#7-setup #8

Merged
juggy1233 merged 6 commits from #7-setup into master 2023-03-17 01:50:50 -04:00
Showing only changes of commit 3242c229b8 - Show all commits

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