This repository has been archived on 2023-02-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
autonomic.zone/Dockerfile
T
renovate-bot f8c8980662
renovate/artifacts Artifact file update failure
Update ruby Docker tag to v3
2022-08-12 07:00:54 +00:00

18 lines
212 B
Docker

FROM ruby:3.0.2-alpine3.12
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