fix docker image building

This commit is contained in:
zardzul
2026-02-13 10:43:32 +01:00
parent b80687f67d
commit 6abee7cb51
7 changed files with 46 additions and 45 deletions
+4 -4
View File
@@ -4,11 +4,11 @@ FROM eclipse-temurin:17-jdk
# Set working directory
WORKDIR /server
# Copy server configuration files
COPY configuration/. .
# Copy modpack files
COPY modpack/ /server/
# Copy all modpack related files
COPY modpack/. .
# Copy configuration files
COPY configuration/ /server/
# Make run.sh executable
RUN chmod +x run.sh