#77 Fixed compose, added docs

This commit is contained in:
Marvin Scham
2023-06-28 05:33:49 +02:00
parent c74205663a
commit 388860fe5b
5 changed files with 14 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.0.0.jar /easydrop.jar
COPY --from=build /app/target/easydrop-1.0.1.jar /easydrop.jar
# Execute the application when the docker container starts.
ENTRYPOINT ["java", "-jar", "/easydrop.jar"]