Skip to content

Instantly share code, notes, and snippets.

@udienz
Created August 17, 2016 02:58
Show Gist options
  • Save udienz/99802b7f6a7b2d5c8e7aef4491c96aa2 to your computer and use it in GitHub Desktop.
Save udienz/99802b7f6a7b2d5c8e7aef4491c96aa2 to your computer and use it in GitHub Desktop.
Jekyll docker
FROM ruby:2.3
MAINTAINER Mahyuddin Susanto <udienz@gmail.com>
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