File size: 345 Bytes
9be0c0e
 
ea7cc2b
9be0c0e
 
 
 
 
 
ea7cc2b
9be0c0e
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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"]