Files
COMP-2707-final-project/backend/Dockerfile

11 lines
200 B
Docker

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