We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bc87b6d + 02388a0 commit 78d6bfcCopy full SHA for 78d6bfc
.github/workflows/docker-image.yml
@@ -117,6 +117,8 @@ jobs:
117
file: "docker/worker.dockerfile"
118
push: true
119
tags: ${{ steps.meta-worker.outputs.tags }}
120
+ build-args: |
121
+ BASE_IMAGE_TAG=${{ inputs.version }}
122
123
- name: Worker Sign the images with GitHub OIDC Token
124
env:
docker/worker.dockerfile
@@ -1,4 +1,6 @@
1
-FROM grimoirelab/sortinghat:latest
+ARG BASE_IMAGE_TAG=latest
2
+
3
+FROM grimoirelab/sortinghat:${BASE_IMAGE_TAG}
4
5
LABEL maintainer="Santiago Dueñas <[email protected]>"
6
LABEL org.opencontainers.image.title="SortingHat worker"
0 commit comments