Skip to content

Commit 7fdf1f5

Browse files
committed
fix: resposne types
1 parent 4fac029 commit 7fdf1f5

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
FROM python:3.13
2+
3+
WORKDIR /litestar
4+
5+
RUN python -m venv /opt/venv
6+
ENV PATH="/opt/venv/bin:$PATH"
7+
8+
RUN pip3 install cython==3.0.12
9+
10+
COPY requirements.txt requirements-gunicorn.txt ./
11+
12+
RUN pip3 install -r requirements.txt -r requirements-gunicorn.txt
13+
14+
COPY . ./
15+
16+
EXPOSE 8080
17+
18+
CMD gunicorn app:app -k uvicorn_worker.UvicornWorker -c litestar_conf.py

0 commit comments

Comments
 (0)