autonomic.zone/Dockerfile

17 lines
199 B
Docker
Raw Normal View History

2020-05-01 11:41:07 +00:00
FROM ruby:2.7.1-alpine
EXPOSE 4000
RUN apk --no-cache add \
bash \
g++ \
git \
make
RUN gem install bundler -v 2.1.4
RUN gem install jekyll -v 4.0.0
COPY . ${WORKDIR}
RUN bundle install