Skip to content
Snippets Groups Projects
Commit 388962db authored by Florian Spreckelsen's avatar Florian Spreckelsen
Browse files

PIPELINE: Use correct installation order

parent 7ec295fa
No related branches found
No related tags found
2 merge requests!89Integration Test Suggestions - Inttest,!81F local inttests
Pipeline #60407 failed
......@@ -11,12 +11,12 @@ RUN apt-get update && \
ARG PYLIB
RUN echo "PYLIB=${PYLIB}"
COPY .docker/wait-for-it.sh /wait-for-it.sh
RUN pip install -r ./requirements.txt
COPY . /git
RUN pip install -r /git/requirements.txt
ADD https://gitlab.indiscale.com/api/v4/projects/97/repository/commits/${PYLIB} \
pylib_version.json
RUN git clone https://gitlab.indiscale.com/caosdb/src/caosdb-pylib.git && \
cd caosdb-pylib && git checkout ${PYLIB} && pip3 install .
COPY . /git
# Delete .git because it is huge.
RUN rm -r /git/.git
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment