This repository has been archived on 2026-05-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
minecraft-server-ironveil/Dockerfile
T
2026-02-24 16:49:00 +00:00

27 lines
493 B
Docker

# Use an official OpenJDK 21 image
FROM eclipse-temurin:21-jdk
# Set working directory
WORKDIR /server
# Copy modpack files
COPY modpack/. .
# Copy configuration files
COPY configuration/. .
# Make run.sh executable (check if it exists first)
RUN chmod +x /server/run.sh
# Expose the default Minecraft port (25565)
EXPOSE 25565
# Expose the default Minecraft RCON port (25575)
EXPOSE 25575
# Expose dynmap port
EXPOSE 8123
# Start the server using run.sh
ENTRYPOINT ["/server/run.sh"]