Skip to content

Instantly share code, notes, and snippets.

@sunnyone
Created April 25, 2019 10:13
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 sunnyone/d3cd8e10159c3be7792c8dc41ede193e to your computer and use it in GitHub Desktop.
Save sunnyone/d3cd8e10159c3be7792c8dc41ede193e to your computer and use it in GitHub Desktop.
Dockerfile-gollum
FROM ruby
RUN apt-get -y update && apt-get -y install libicu-dev cmake && rm -rf /var/lib/apt/lists/*
COPY . /work
RUN cd /work && bundle install --path vendor/bundle
WORKDIR /wiki
ENTRYPOINT ["/work/entrypoint.sh"]
EXPOSE 80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment