From 0a34b6517ea43a0f3b8310bdaf80d5163a9f4204 Mon Sep 17 00:00:00 2001 From: "tobias.pobocik" Date: Wed, 25 Oct 2023 14:02:18 +0200 Subject: [PATCH] Introduce variable to store simulator version Introduce an ARG (argument) in the Dockerfile to store the simulator version as a variable. The default version is set to "19.0.0," and it can be customized during the image build process using the --build-arg flag. JIRA:LIGHTY-260 Signed-off-by: tobias.pobocik --- .github/workflows/lighty-rnc-app/simulator/Dockerfile | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lighty-rnc-app/simulator/Dockerfile b/.github/workflows/lighty-rnc-app/simulator/Dockerfile index 2e28397099..ada89505dc 100644 --- a/.github/workflows/lighty-rnc-app/simulator/Dockerfile +++ b/.github/workflows/lighty-rnc-app/simulator/Dockerfile @@ -1,17 +1,24 @@ +ARG SIMULATOR_VERSION="19.0.0" + FROM alpine:3.18.3 as clone + +ARG SIMULATOR_VERSION RUN apk add git WORKDIR /netconf-simulator -RUN git clone https://github.com/PANTHEONtech/lighty-netconf-simulator.git -b 19.0.0 +RUN git clone https://github.com/PANTHEONtech/lighty-netconf-simulator.git -b $SIMULATOR_VERSION FROM maven:3.8-eclipse-temurin-17-alpine as build +ARG SIMULATOR_VERSION WORKDIR /lighty-netconf-simulator COPY --from=clone /netconf-simulator/lighty-netconf-simulator /lighty-netconf-simulator RUN mvn -B install -DskipTests FROM eclipse-temurin:17-jre-alpine +ARG SIMULATOR_VERSION WORKDIR /lighty-netconf-simulator COPY --from=build /lighty-netconf-simulator/examples/devices/lighty-network-topology-device/target/ /lighty-netconf-simulator/target EXPOSE 17380 -ENTRYPOINT ["java", "-jar", "/lighty-netconf-simulator/target/lighty-network-topology-device-19.0.0.jar"] +ENV APP_PATH="/lighty-netconf-simulator/target/lighty-network-topology-device-$SIMULATOR_VERSION.jar" +ENTRYPOINT java -jar $APP_PATH