Init
This commit is contained in:
10
Dockerfile
Normal file
10
Dockerfile
Normal file
@@ -0,0 +1,10 @@
|
||||
FROM python:3.10-alpine
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
COPY pyproject.toml poetry.lock README.md ./
|
||||
COPY backend backend
|
||||
|
||||
RUN pip install -e "."
|
||||
|
||||
ENTRYPOINT ["hypercorn", "backend:app"]
|
||||
CMD ["--bind", "0.0.0.0:80"]
|
||||
Reference in New Issue
Block a user