initial commit
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 23:40:35 +07:00
commit 4066e0bec6
97 changed files with 7641 additions and 0 deletions

6
Dockerfile Normal file
View File

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