From d27c57706ef388d5527f2e6c5e15001cc60e4fec Mon Sep 17 00:00:00 2001 From: Francis De Brabandere Date: Mon, 15 Apr 2024 14:00:06 +0200 Subject: [PATCH] fix: missing alpine BASE_IMAGE_TAG arg declaration (#282) --- eclipse-temurin/alpine.Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eclipse-temurin/alpine.Dockerfile b/eclipse-temurin/alpine.Dockerfile index ceef37f..7990c78 100644 --- a/eclipse-temurin/alpine.Dockerfile +++ b/eclipse-temurin/alpine.Dockerfile @@ -1,4 +1,5 @@ # Use a multi-stage build to reduce the size of the final image +ARG BASE_IMAGE_TAG FROM eclipse-temurin:${BASE_IMAGE_TAG:-21.0.2_13-jdk-alpine} as builder ARG SCALA_VERSION=3.4.0 @@ -87,4 +88,4 @@ RUN \ ## -w /home/sbtuser WORKDIR /root -CMD sbt \ No newline at end of file +CMD sbt