Created
April 25, 2019 10:13
-
-
Save sunnyone/d3cd8e10159c3be7792c8dc41ede193e to your computer and use it in GitHub Desktop.
Dockerfile-gollum
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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