#7 Made Dockerfile for backend

This commit is contained in:
2023-03-17 00:59:14 -04:00
parent 5d4e025696
commit 3242c229b8

10
backend/Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3.10.9
WORKDIR /tmp
RUN python -m venv venv
COPY ./requirements.txt /code/requirements.txt
RUN python -m pip install -r /code/requirements.txt
WORKDIR /code
COPY ./ /code
CMD sh boot.sh