diff --git a/Dockerfile b/Dockerfile index 1518563..5e64944 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM eclipse-temurin:17-jdk-alpine WORKDIR /app -COPY target/springboot-example.jar springboot-example.jar +COPY build/libs/*.jar springboot-example.jar EXPOSE 8080 CMD ["java", "-jar", "springboot-example.jar"] \ No newline at end of file