Skip to content

Commit e6ea4c0

Browse files
committed
fix: use correct position for the ARG line
1 parent d3451fc commit e6ea4c0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# syntax=docker/dockerfile:1.1.7-experimental
2-
ARG RUNE_TAG="v1.0.6"
32

43
#############################################
54
# Tox testsuite for multiple python version #
@@ -22,6 +21,7 @@ RUN export RESOLVED_VERSIONS=`pyenv_resolve $PYTHON_VERSIONS` \
2221
# Base builder image #
2322
######################
2423
FROM python:3.11-bookworm as builder_base
24+
ARG RUNE_TAG="v1.0.6"
2525

2626
ENV \
2727
# locale
@@ -75,7 +75,8 @@ RUN --mount=type=ssh pip3 install wheel virtualenv \
7575

7676
# Add rune instructions
7777
RUN mkdir -p /opt/templates \
78-
&& curl -L https://github.com/pvarki/rune-fake-metadata/releases/download/$RUNE_TAG/rune.json -o /opt/templates/rune-fake.json
78+
&& curl -L https://github.com/pvarki/rune-fake-metadata/releases/download/${RUNE_TAG}/rune.json -o /opt/templates/rune-fake.json \
79+
&& ls -lah /opt/templates/rune-fake.json
7980

8081
####################################
8182
# Base stage for production builds #

0 commit comments

Comments
 (0)