Skip to content
Snippets Groups Projects
Commit 744f270d authored by Patrick Jentsch's avatar Patrick Jentsch
Browse files

Equalize Dockerfile with other pipelines

parent f0dc540d
No related branches found
No related tags found
No related merge requests found
......@@ -36,8 +36,6 @@ RUN python2 -m virtualenv "${PYTHON2_VENV_PATH}" \
ENV PATH="${PYTHON3_VENV_PATH}/bin:${PYTHON2_VENV_PATH}/bin:${PATH}"
COPY --chown=generic:generic packages packages
COPY --chown=generic:generic requirements.txt .
ENV PYFLOW_VERSION="1.1.20"
RUN wget \
--output-document - \
......@@ -46,9 +44,13 @@ RUN wget \
&& cd "pyflow-${PYFLOW_VERSION}" \
&& python2 setup.py build install \
&& cd - > /dev/null \
&& rm --recursive "pyflow-${PYFLOW_VERSION}" \
&& python3 -m pip install --upgrade pip \
&& python3 -m pip install -r requirements.txt \
&& rm --recursive "pyflow-${PYFLOW_VERSION}"
COPY --chown=generic:generic packages packages
COPY --chown=generic:generic requirements.txt .
RUN python3 -m pip install --upgrade pip \
&& python3 -m pip install --requirement requirements.txt \
&& rm --recursive packages requirements.txt
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment