diff options
Diffstat (limited to 'docker/app/alpine/3.7/Dockerfile')
-rw-r--r-- | docker/app/alpine/3.7/Dockerfile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/docker/app/alpine/3.7/Dockerfile b/docker/app/alpine/3.7/Dockerfile index 7e639c29..955c01be 100644 --- a/docker/app/alpine/3.7/Dockerfile +++ b/docker/app/alpine/3.7/Dockerfile @@ -18,9 +18,11 @@ RUN apk add --no-cache --update --virtual build \ postgresql-dev WORKDIR /app -COPY pyproject.toml /app/pyproject.toml -RUN python3 -m pip install poetry \ - && python3 -m poetry install --extras deploy \ + +COPY Pipfile /app/Pipfile +COPY Pipfile.lock /app/Pipfile.lock +RUN python3 -m pip install pipenv \ + && python3 -m pipenv install --dev --system --deploy \ && apk del --purge build COPY . . |