attemped fix
Build and Publish Docker Image / build (push) Successful in 2m14s
Deploy to Production / deploy-to-production (push) Failing after 24s

This commit is contained in:
zardzul
2026-02-13 11:28:21 +01:00
parent 6233dfd73f
commit 5f3f59b7ae
+4 -3
View File
@@ -10,8 +10,9 @@ COPY modpack/ /server/
# Copy configuration files # Copy configuration files
COPY configuration/ /server/ COPY configuration/ /server/
# Make run.sh executable # Make run.sh executable (check if it exists first)
RUN chmod +x run.sh RUN if [ -f run.sh ]; then chmod +x run.sh; fi && \
if [ -f /server/run.sh ]; then chmod +x /server/run.sh; fi
# Expose the default Minecraft port (25565) # Expose the default Minecraft port (25565)
EXPOSE 25565 EXPOSE 25565
@@ -20,4 +21,4 @@ EXPOSE 25565
EXPOSE 25575 EXPOSE 25575
# Start the server using run.sh # Start the server using run.sh
ENTRYPOINT ["/server/run.sh"] ENTRYPOINT ["./run.sh"]