Skip to content

Commit

Permalink
Use root of directory as docker build context
Browse files Browse the repository at this point in the history
  • Loading branch information
dynamic-entropy committed Sep 1, 2023
1 parent 713ca54 commit b10f99f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/rucio-release-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Build and Push CMS Rucio Release Images
strategy:
matrix:
image: [rucio-probes, rucio-daemons, rucio-server]
image: [rucio-probes, rucio-daemons, rucio-server, rucio-ui]
fail-fast: False

steps:
Expand All @@ -35,8 +35,7 @@ jobs:

- name: Build the Docker Image
run: |
cd docker/${{ matrix.image }} && \
buildah build --build-arg RUCIO_VERSION=${{ env.rucio_version }} --tag registry.cern.ch/${{ vars.HARBOR_REPOSITORY }}/${{ matrix.image }}:${{ env.tag }} .
buildah build --build-arg RUCIO_VERSION=${{ env.rucio_version }} --file docker/${{ matrix.image }}/Dockerfile --tag registry.cern.ch/${{ vars.HARBOR_REPOSITORY }}/${{ matrix.image }}:${{ env.tag }} .
- name: Push the Docker Image
run: |
Expand Down

0 comments on commit b10f99f

Please sign in to comment.