Initial server configuration

This commit is contained in:
2026-06-01 21:02:52 +03:00
commit 6c51390cab
398 changed files with 86675 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
# Use a base image with Java installed
FROM openjdk:17-jdk
WORKDIR /app
COPY start.sh .
RUN chmod +x /app/start.sh
ENTRYPOINT ["/app/start.sh"]