Bachelorthesis_Code/backend/Dockerfile

12 lines
129 B
Text
Raw Normal View History

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