change credentials placement
All checks were successful
Gitea Action Maven build / build (push) Successful in 48s
Gitea Action Maven build / deploy (push) Successful in 8s

This commit is contained in:
Eduard Kuksa
2025-02-23 16:33:35 +07:00
parent 6c8e3d83f5
commit 749291de0e
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
FROM openjdk:21-jdk-slim
WORKDIR /app
COPY target/searchengine-*.jar ./searchengine.jar
COPY .env ./
COPY .env ./.env
EXPOSE 8080
CMD ["java", "-jar", "searchengine.jar"]