Skip to content

Instantly share code, notes, and snippets.

@jaydenmilne
Created May 16, 2019 23:05
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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