Skip to content

Commit fecd2ef

Browse files
committed
case sensitive correction
1 parent 7c137f8 commit fecd2ef

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ci/dockerfile_creator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def remote_entrypoint_addon():
2727

2828

2929
def docker_header(image: str, image_tag: str, geant4_tag: str) -> str:
30-
commands = f"FROM {g4_registry}:{geant4_tag}-{image}-{image_tag} as final\n"
30+
commands = f"FROM {g4_registry}:{geant4_tag}-{image}-{image_tag} AS final\n"
3131
commands += f"LABEL maintainer=\"Maurizio Ungaro <ungaro@jlab.org>\"\n\n"
3232
commands += f"# run bash instead of sh\n"
3333
commands += f"SHELL [\"/bin/bash\", \"-c\"]\n\n"

0 commit comments

Comments
 (0)