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
Renovate Bot 961cf1a54d
Some checks failed
continuous-integration/drone/pr Build is failing
Update ruby Docker tag to v2.7.2
2020-10-05 07:00:21 +00:00

18 lines
208 B
Docker

FROM ruby:2.7.2-alpine
EXPOSE 4000
RUN apk --no-cache add \
bash \
curl \
g++ \
git \
make
RUN gem install bundler -v 2.1.4
RUN gem install jekyll -v 4.0.0
COPY . ${WORKDIR}
RUN bundle install