mineserver / Dockerfile
misukisu's picture
Update Dockerfile
ea7cc2b verified
Raw
History Blame Contribute Delete
345 Bytes
FROM ubuntu:22.04
RUN apt-get update && apt-get install -y wget unzip libcurl4
WORKDIR /server
RUN wget https://minecraft.azureedge.net/bin-linux/bedrock-server-1.21.0.03.zip
RUN unzip bedrock-server-1.21.0.03.zip
RUN chmod +x bedrock_server
RUN echo "eula=true" > eula.txt
COPY start.sh /start.sh
RUN chmod +x /start.sh
CMD ["/start.sh"]