12 lines
292 B
Docker
12 lines
292 B
Docker
FROM ubuntu:latest
|
|
LABEL maintainer="William Miceli <git@williammiceli.me>"
|
|
USER root
|
|
|
|
ARG MC_SERVER_VERSION
|
|
|
|
RUN curl -o /MinecraftServer.zip https://minecraft.azureedge.net/bin-linux/bedrock-server-${MC_SERVER_VERSION}.zip
|
|
|
|
COPY /entrypoint.sh /
|
|
|
|
EXPOSE 80
|
|
CMD ["/bin/sh", "/entrypoint.sh"] |