core/Dockerfile
2021-07-13 10:14:48 +00:00

12 lines
170 B
Docker

FROM python:3.9
RUN pip3 install pipenv
WORKDIR /usr/src/app
COPY Pipfile ./
COPY Pipfile.lock ./
RUN set -ex && pipenv install --deploy --system
COPY . .