Bump version: 1.1.0-beta → 1.1.0

This commit is contained in:
Marvin Scham
2023-09-23 00:13:42 +02:00
parent 59774a0af4
commit b77f7f88c5
5 changed files with 5 additions and 5 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.1.0-beta.jar /easydrop.jar
COPY --from=build /app/target/easydrop-1.1.0.jar /easydrop.jar
# Execute the application when the docker container starts.
ENTRYPOINT ["java", "-jar", "/easydrop.jar"]