diff --git a/backend/Dockerfile b/backend/Dockerfile new file mode 100644 index 0000000..5d20aa7 --- /dev/null +++ b/backend/Dockerfile @@ -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