File size: 332 Bytes
8ff89fa 9b9a86e 1271ead 8ff89fa 1271ead 8ff89fa 1271ead 8ff89fa 1271ead 8ff89fa |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# Use the official OpenJDK 17 image as the base image
FROM openjdk:17-jdk
# Set the working directory to /minecraft
WORKDIR /minecraft
# Copy the server.jar file to the container
COPY server.jar /minecraft/server.jar
# Expose the Minecraft server port
EXPOSE 7860
# Start the Minecraft server
CMD ["java", "-jar", "server.jar"]
|