Skip to content

Commit a61f197

Browse files
committed
skipping cleanup action and fix path with tag
1 parent 7a943e2 commit a61f197

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/docker.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,11 @@ jobs:
7878
- name: Checkout repository
7979
uses: actions/checkout@v4
8080

81-
- name: Free up disk space
82-
uses: ./.github/actions/free-disk-space
83-
with:
84-
prune_docker: "true"
85-
show_tree: "true"
81+
# - name: Free up disk space
82+
# uses: ./.github/actions/free-disk-space
83+
# with:
84+
# prune_docker: "true"
85+
# show_tree: "true"
8686

8787
- name: Set up Buildx
8888
uses: docker/setup-buildx-action@v3

ci/dockerfile_creator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def available_images() -> str:
2121

2222

2323
def docker_header(image: str, image_tag: str, geant4_tag: str) -> str:
24-
commands = f"FROM {g4_registry}/{geant4_tag}-{image}{image_tag}\n"
24+
commands = f"FROM {g4_registry}:{geant4_tag}-{image}-{image_tag}\n"
2525
commands += f"LABEL maintainer=\"Maurizio Ungaro <ungaro@jlab.org>\"\n\n"
2626
commands += f"# run bash instead of sh\n"
2727
commands += f"SHELL [\"/bin/bash\", \"-c\"]\n\n"

0 commit comments

Comments
 (0)