From 06dcd1ea5f17db1066423df0e6707ac57a7f2a0a Mon Sep 17 00:00:00 2001 From: Stian Lyng <stianlyng@protonmail.com> Date: Thu, 20 Apr 2023 15:05:43 +0200 Subject: [PATCH] bugfix --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7da2c042..e3711d86 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,8 +26,6 @@ #ENTRYPOINT ["java","-jar","SmartMat.jar"] #EXPOSE 8080 # -# Use the official Maven image as the base image - # Use the Eclipse Temurin JRE 19 image as the base image FROM eclipse-temurin:19-jre-alpine @@ -35,7 +33,7 @@ FROM eclipse-temurin:19-jre-alpine WORKDIR /app # Copy the JAR file to the working directory -COPY your-jar-file.jar ./app.jar +COPY my-jar-file.jar ./app.jar # Expose the port the application will run on EXPOSE 8080 -- GitLab