12 lines
159 B
Docker
12 lines
159 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 . . |