Skip to content
Snippets Groups Projects
Commit 8f57d052 authored by Henrik tom Wörden's avatar Henrik tom Wörden
Browse files

ENH: Allow setting of pylib version

parent a0a15f75
No related branches found
No related tags found
No related merge requests found
......@@ -9,10 +9,11 @@ RUN apt-get update && \
tox \
-y
COPY .docker/wait-for-it.sh /wait-for-it.sh
ADD https://gitlab.com/api/v4/projects/13656973/repository/branches/dev \
ARG PYLIB=dev
ADD https://gitlab.com/api/v4/projects/13656973/repository/commits/${PYLIB} \
pylib_version.json
RUN git clone https://gitlab.com/caosdb/caosdb-pylib.git && \
cd caosdb-pylib && pip3 install .
cd caosdb-pylib && git checkout ${PYLIB} && pip3 install .
COPY . /git
RUN rm -r /git/.git && mv /git/.docker/pycaosdb.ini /git
WORKDIR /git
......
......@@ -123,6 +123,7 @@ build-testenv:
- docker login -u indiscale -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
# use here general latest or specific branch latest...
- docker build
--build-arg PYLIB=${PYLIB}
--file .docker/Dockerfile
-t $CI_REGISTRY_IMAGE:latest .
- docker push $CI_REGISTRY_IMAGE:latest
......
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