core/Dockerfile

14 lines
191 B
Docker
Raw Normal View History

2022-11-17 08:44:13 +00:00
FROM python:3.8
2022-11-10 22:44:04 +00:00
EXPOSE 8080
RUN /usr/local/bin/python -m pip install --upgrade pip
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN set -ex && pip install -r requirements.txt
COPY . .