This repository has been archived on 2023-02-03. You can view files and clone it, but cannot push or open issues or pull requests.
autonomic.zone/Dockerfile

18 lines
212 B
Docker
Raw Permalink Normal View History

2021-07-23 23:34:43 +00:00
FROM ruby:2.7.4-alpine3.12
2020-05-01 11:41:07 +00:00
EXPOSE 4000
RUN apk --no-cache add \
bash \
2020-06-24 13:08:50 +00:00
curl \
2020-05-01 11:41:07 +00:00
g++ \
git \
make
RUN gem install bundler -v 2.1.4
RUN gem install jekyll -v 4.0.0
COPY . ${WORKDIR}
RUN bundle install