deploy to server
Some checks failed
Gitea Action Maven build / build (push) Successful in 1m21s
Gitea Action Maven build / deploy (push) Failing after 5s

This commit is contained in:
Eduard Kuksa
2025-02-22 18:06:47 +07:00
parent 2860db3e90
commit f5f9e8c644
4 changed files with 39 additions and 1 deletions

5
Dockerfile Normal file
View File

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