Added proper credentials, updated docs

This commit is contained in:
Marvin Scham
2023-07-04 02:52:09 +02:00
parent 19d25e224e
commit a7989dea35
6 changed files with 16 additions and 9 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.1.jar /easydrop.jar
COPY --from=build /app/target/easydrop-1.0.2.jar /easydrop.jar
# Execute the application when the docker container starts.
ENTRYPOINT ["java", "-jar", "/easydrop.jar"]