core/Dockerfile

12 lines
170 B
Docker
Raw Normal View History

2021-07-13 10:14:48 +00:00
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 . .