core/Dockerfile

17 lines
192 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-15 14:42:17 +00:00
RUN pip3 install pip
2021-07-13 10:14:48 +00:00
WORKDIR /usr/src/app
COPY Pipfile ./
COPY Pipfile.lock ./
2021-07-15 14:42:17 +00:00
RUN set -ex && pip install
2021-07-13 10:14:48 +00:00
2021-07-26 07:05:08 +00:00
COPY . .
CMD ["python", "server.py"]