Skip to content

Instantly share code, notes, and snippets.

@jaydenmilne
Created May 16, 2019 23:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jaydenmilne/cb3cb0502c4797d620cb598c9a8e702a to your computer and use it in GitHub Desktop.
Save jaydenmilne/cb3cb0502c4797d620cb598c9a8e702a to your computer and use it in GitHub Desktop.
Simple example of a Dockerfile for Bedrock
FROM ubuntu
RUN mkdir /opt/bedrock
COPY bedrock-server-1.11.2.1 /opt/bedrock
RUN apt-get update
RUN apt-get install -y libcurl4
ENV LD_LIBRARY_PATH /opt/bedrock
VOLUME ["/opt/bedrock"]
CMD cd /opt/bedrock && /opt/bedrock/bedrock_server
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment