Skip to content

Commit 78d6bfc

Browse files
authored
2 parents bc87b6d + 02388a0 commit 78d6bfc

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/docker-image.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,8 @@ jobs:
117117
file: "docker/worker.dockerfile"
118118
push: true
119119
tags: ${{ steps.meta-worker.outputs.tags }}
120+
build-args: |
121+
BASE_IMAGE_TAG=${{ inputs.version }}
120122
121123
- name: Worker Sign the images with GitHub OIDC Token
122124
env:

docker/worker.dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
FROM grimoirelab/sortinghat:latest
1+
ARG BASE_IMAGE_TAG=latest
2+
3+
FROM grimoirelab/sortinghat:${BASE_IMAGE_TAG}
24

35
LABEL maintainer="Santiago Dueñas <[email protected]>"
46
LABEL org.opencontainers.image.title="SortingHat worker"

0 commit comments

Comments
 (0)