x86_64-debian-bedrock/Dockerfile
Jonathan Ervine 3283b015aa modified: Dockerfile
modified:   Jenkinsfile
Bumper server version to use 1.14.60.5
2020-04-16 12:44:00 +08:00

17 lines
444 B
Docker

FROM debian:buster-slim
MAINTAINER “Jonathan Ervine” <docker@ervine.org>
# Install updates
RUN apt update && apt upgrade -y
RUN apt install unzip curl -y
RUN mkdir /bedrock && cd /bedrock && curl -LO https://minecraft.azureedge.net/bin-linux/bedrock-server-1.14.60.5.zip && unzip bedrock-server-1.14.60.5.zip && rm bedrock-server-1.14.60.5.zip
ADD start.sh /usr/local/bin/
EXPOSE 19133
VOLUME config
CMD [ "/usr/local/bin/start.sh" ]