From 9f4041de78eebc7c5f2570ac86b18499848f2d05 Mon Sep 17 00:00:00 2001 From: krateng Date: Thu, 23 Dec 2021 08:24:12 +0100 Subject: [PATCH] Fixed PyPI-based dockerfile --- Dockerfile-pypi | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile-pypi b/Dockerfile-pypi index fee30c3..682a450 100644 --- a/Dockerfile-pypi +++ b/Dockerfile-pypi @@ -7,18 +7,18 @@ FROM python:3-alpine ARG MALOJA_RELEASE WORKDIR /usr/src/app - - +# Copy needed information +COPY ./install ./install RUN \ # Build dependencies sh ./install/alpine_requirements_build_volatile.sh && \ # Runtime dependencies sh ./install/alpine_requirements_run.sh && \ - # Python dependencies - pip3 install --no-cache-dir -r requirements.txt && \ - # PyPI install - pip3 install malojaserver==$MALOJA_RELEASE && \ + + + # PyPI install + pip3 install malojaserver==$MALOJA_RELEASE && \ # Remove build dependencies apk del .build-deps