Skip to content
Snippets Groups Projects
Commit 64914dfe authored by Sören Henning's avatar Sören Henning
Browse files

Add pipeline job for docker-compose-jq

parent 8bf2e594
No related branches found
No related tags found
No related merge requests found
Pipeline #6280 failed
...@@ -573,4 +573,19 @@ deploy-random-scheduler: ...@@ -573,4 +573,19 @@ deploy-random-scheduler:
- if: "$CR_HOST && $CR_ORG && $CR_USER && $CR_PW" - if: "$CR_HOST && $CR_ORG && $CR_USER && $CR_PW"
when: manual when: manual
allow_failure: true allow_failure: true
\ No newline at end of file deploy-buildimage-docker-compose-jq:
stage: deploy
extends:
- .kaniko-push
needs: []
variables:
DOCKER_VERSION: 20.10.12
IMAGE_TAG: $DOCKER_VERSION
rules:
- changes:
- buildimages/docker-compose-jq/Dockerfile
if: "$CR_HOST && $CR_ORG && $CR_USER && $CR_PW"
- if: "$CR_HOST && $CR_ORG && $CR_USER && $CR_PW && $CI_PIPELINE_SOURCE == web"
when: manual
allow_failure: true
\ No newline at end of file
FROM docker:${DOCKER_VERSION:-latest}
RUN apk update && \
apk add -U jq && \
apk add py-pip python3-dev libffi-dev openssl-dev gcc libc-dev rust cargo make && \
pip install docker-compose
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