From 92b6d4323028b558b58fe37b8b87d44360921c0c Mon Sep 17 00:00:00 2001 From: Georg Gadinger Date: Fri, 10 Feb 2023 14:41:01 +0100 Subject: [PATCH] Containerfile: download archive without tag requirement --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 637aebee..2e740498 100644 --- a/Containerfile +++ b/Containerfile @@ -57,7 +57,7 @@ WORKDIR /opt/retrospring/app USER justask:users # install the app -RUN curl -L https://github.com/Retrospring/retrospring/archive/refs/tags/${RETROSPRING_VERSION}.tar.gz | tar xz --strip-components=1 +RUN curl -L https://github.com/Retrospring/retrospring/archive/${RETROSPRING_VERSION}.tar.gz | tar xz --strip-components=1 RUN bundle config set without 'development test' \ && bundle config set path '/opt/retrospring/bundle' \