Skip to content

Instantly share code, notes, and snippets.

@smith-isaac
smith-isaac / Spigot_Dockerfile
Created February 23, 2024 16:49
Dockerfile to set up and run a spigot server
FROM azul/zulu-openjdk:21-latest
# Set workdir to /server
WORKDIR /server
EXPOSE 25565
# Get wget and git
RUN apt update
RUN apt install -y wget git