Moved code to subfolder

This commit is contained in:
2023-03-10 09:21:27 +01:00
parent 69416eb896
commit b90fbdf668
12 changed files with 24 additions and 0 deletions

12
backend/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM python:3.8
WORKDIR /app
ADD requirements.txt /app/requirements.txt
RUN pip install --upgrade -r requirements.txt
EXPOSE 8080
COPY ./ /app
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8080"]