small changes

Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
2024-10-10 00:21:25 +02:00
parent 630c54319c
commit 7e82fa4b9b
3 changed files with 4 additions and 4 deletions

View File

@@ -27,7 +27,7 @@ FROM eclipse-temurin:21-jre-jammy
RUN useradd -m app
USER app
COPY --chown=app --from=build /usr/src/app/build/libs/*-SNAPSHOT.jar /usr/app/app.jar
COPY --chown=app --from=build /usr/src/app/build/libs/*-SNAPSHOT.jar /usr/app/google.jar
EXPOSE 8080
CMD java -jar /usr/app/app.jar
CMD java -jar /usr/app/google.jar

View File

@@ -1,4 +1,4 @@
package dev.mars3142.fhq.google_services;
package dev.mars3142.fhq.google_service;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

View File

@@ -1,4 +1,4 @@
package dev.mars3142.fhq.google_services;
package dev.mars3142.fhq.google_service;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;