Skip to content

Commit

Permalink
fix: added missing build args to Docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
jonrkarr committed Nov 24, 2021
1 parent c42a7aa commit 35de1e3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ jobs:
uses: whoan/docker-build-with-cache-action@v5
with:
dockerfile: Dockerfile-pyneuroml
build_extra_args: "--compress=true --label org.opencontainers.image.revision=${{steps.get-docker-image-tag.outputs.revision}} --label org.opencontainers.image.created=${{steps.get-docker-image-tag.outputs.created}}"
build_extra_args: "--compress=true --build-arg VERSION=${{ steps.get-version-number.outputs.version }} --build-arg SIMULATOR_VERSION=${{ steps.get-docker-image-tag.outputs.pyneuromlVersion }} --label org.opencontainers.image.source=https://github.com/${{ github.repository }} --label org.opencontainers.image.revision=${{steps.get-docker-image-tag.outputs.revision}} --label org.opencontainers.image.created=${{steps.get-docker-image-tag.outputs.created}}"
registry: ghcr.io
image_name: biosimulators/biosimulators_pyneuroml/pyneuroml
image_tag: ${{ github.sha }}
Expand All @@ -175,7 +175,7 @@ jobs:
uses: whoan/docker-build-with-cache-action@v5
with:
dockerfile: Dockerfile-neuron
build_extra_args: "--compress=true --label org.opencontainers.image.revision=${{steps.get-docker-image-tag.outputs.revision}} --label org.opencontainers.image.created=${{steps.get-docker-image-tag.outputs.created}}"
build_extra_args: "--compress=true --build-arg VERSION=${{ steps.get-version-number.outputs.version }} --build-arg SIMULATOR_VERSION=${{ steps.get-docker-image-tag.outputs.neuronVersion }} --label org.opencontainers.image.source=https://github.com/${{ github.repository }} --label org.opencontainers.image.revision=${{steps.get-docker-image-tag.outputs.revision}} --label org.opencontainers.image.created=${{steps.get-docker-image-tag.outputs.created}}"
registry: ghcr.io
image_name: biosimulators/biosimulators_pyneuroml/neuron
image_tag: ${{ github.sha }}
Expand All @@ -187,7 +187,7 @@ jobs:
uses: whoan/docker-build-with-cache-action@v5
with:
dockerfile: Dockerfile-netpyne
build_extra_args: "--compress=true --label org.opencontainers.image.revision=${{steps.get-docker-image-tag.outputs.revision}} --label org.opencontainers.image.created=${{steps.get-docker-image-tag.outputs.created}}"
build_extra_args: "--compress=true --build-arg VERSION=${{ steps.get-version-number.outputs.version }} --build-arg SIMULATOR_VERSION=${{ steps.get-docker-image-tag.outputs.netpyneVersion }} --label org.opencontainers.image.source=https://github.com/${{ github.repository }} --label org.opencontainers.image.revision=${{steps.get-docker-image-tag.outputs.revision}} --label org.opencontainers.image.created=${{steps.get-docker-image-tag.outputs.created}}"
registry: ghcr.io
image_name: biosimulators/biosimulators_pyneuroml/netpyne
image_tag: ${{ github.sha }}
Expand All @@ -199,7 +199,7 @@ jobs:
uses: whoan/docker-build-with-cache-action@v5
with:
dockerfile: Dockerfile-brian2
build_extra_args: "--compress=true --label org.opencontainers.image.revision=${{steps.get-docker-image-tag.outputs.revision}} --label org.opencontainers.image.created=${{steps.get-docker-image-tag.outputs.created}}"
build_extra_args: "--compress=true --build-arg VERSION=${{ steps.get-version-number.outputs.version }} --build-arg SIMULATOR_VERSION=${{ steps.get-docker-image-tag.outputs.brian2Version }} --label org.opencontainers.image.source=https://github.com/${{ github.repository }} --label org.opencontainers.image.revision=${{steps.get-docker-image-tag.outputs.revision}} --label org.opencontainers.image.created=${{steps.get-docker-image-tag.outputs.created}}"
registry: ghcr.io
image_name: biosimulators/biosimulators_pyneuroml/brian2
image_tag: ${{ github.sha }}
Expand Down

0 comments on commit 35de1e3

Please sign in to comment.