initial commit
All checks were successful
Gitea Action Maven build / build (push) Successful in 50s
Gitea Action Maven build / deploy (push) Successful in 9s

This commit is contained in:
Eduard Kuksa
2025-02-23 23:47:19 +07:00
commit 01f0134f3b
98 changed files with 7644 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"]