Created
August 17, 2016 02:58
-
-
Save udienz/99802b7f6a7b2d5c8e7aef4491c96aa2 to your computer and use it in GitHub Desktop.
Jekyll docker
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:2.3 | |
MAINTAINER Mahyuddin Susanto <[email protected]> | |
ADD code/ /code/ | |
WORKDIR /code | |
RUN bundle install | |
ENV LANGUAGE="en_US" \ | |
LANG="en_US.UTF-8" \ | |
LC_ALL="en_US" \ | |
LC_CTYPE="UTF-8" | |
RUN jekyll build --verbose |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment