Skip to content
Permalink
69f986b57e
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
ChunjiangZhu Yes
Latest commit 948b76d Aug 7, 2019 History
0 contributors

Users who have contributed to this file

executable file 18 lines (12 sloc) 372 Bytes
FROM ruby:2.6
# Set default locale for the environment
ENV LC_ALL C.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8
# throw errors if Gemfile has been modified since Gemfile.lock
RUN bundle config --global frozen 1
WORKDIR /usr/src/app
COPY Gemfile Gemfile.lock jekyll-text-theme.gemspec ./
RUN bundle install
EXPOSE 4000
CMD ["bundle", "exec", "jekyll", "help"]