Bachelorthesis_Code/backend/Dockerfile

12 lines
129 B
Docker
Raw Normal View History

2021-06-21 22:58:08 +00:00
FROM python
2021-05-11 00:03:32 +00:00
2021-06-22 00:15:40 +00:00
WORKDIR /app
2021-05-11 00:03:32 +00:00
2021-06-21 22:58:08 +00:00
COPY requirements.txt .
2021-05-11 00:03:32 +00:00
2021-06-21 22:58:08 +00:00
RUN pip install -r requirements.txt
2021-05-11 00:03:32 +00:00
2021-06-21 22:58:08 +00:00
COPY /src .
2021-05-11 00:03:32 +00:00
2021-06-21 22:58:08 +00:00
CMD [ "python", "app.py" ]