core/Dockerfile

16 lines
233 B
Docker
Raw Normal View History

2021-07-26 07:05:08 +00:00
FROM python:3.8
EXPOSE 80
2021-07-13 10:14:48 +00:00
2021-07-29 17:55:19 +00:00
RUN /usr/local/bin/python -m pip install --upgrade pip
2021-07-13 10:14:48 +00:00
WORKDIR /usr/src/app
2021-08-09 18:42:54 +00:00
COPY requirements.txt ./
2021-07-13 10:14:48 +00:00
2021-08-09 18:42:54 +00:00
RUN set -ex && pip install -r requirements.txt
2021-07-13 10:14:48 +00:00
2021-07-26 07:05:08 +00:00
COPY . .
CMD ["python", "server.py"]