1
0

Initial import

This commit is contained in:
2025-02-13 20:30:59 +01:00
commit 9cd56cee57
591 changed files with 26588 additions and 0 deletions

6
Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM openjdk:17-jdk-alpine
LABEL org.opencontainers.image.authors="john@devsoap.com"
COPY dist/ /app/
RUN chmod +x /app/bin/*
WORKDIR /app
ENTRYPOINT ["/app/bin/server"]