chore(config): configure Google OAuth credentials via environment variables

This commit is contained in:
2025-09-13 12:29:20 +02:00
parent 2d0e676a77
commit a846547d38
6 changed files with 32 additions and 3 deletions

View File

@@ -6,5 +6,8 @@ RUN mvn clean package -DskipTests
FROM openjdk:21-jdk
WORKDIR /app
COPY --from=build /app/bootstrap/target/*.jar app.jar
EXPOSE 8080
ENTRYPOINT ["java","-jar","app.jar"]
EXPOSE 5005
ENTRYPOINT ["java", "-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005", "-jar", "app.jar"]