Bump version: 1.0.2 → 1.1.0-beta

This commit is contained in:
Marvin Scham
2023-09-22 21:01:54 +02:00
parent b28bcc3a55
commit e1b781b7cc
5 changed files with 5 additions and 6 deletions

View File

@@ -21,7 +21,7 @@ RUN mvn -B package -DskipTests
FROM openjdk:17-jdk-slim
# Copy the jar file from the build stage
COPY --from=build /app/target/easydrop-1.0.2.jar /easydrop.jar
COPY --from=build /app/target/easydrop-1.1.0-beta.jar /easydrop.jar
# Execute the application when the docker container starts.
ENTRYPOINT ["java", "-jar", "/easydrop.jar"]