Brief-Generator/backend/Dockerfile

12 lines
125 B
Docker
Raw Permalink Normal View History

2021-08-28 21:42:33 +00:00
FROM python
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY /src .
CMD [ "flask", "run" ]