docker-jekyll/Dockerfile
Hanjo Meinhardt 0cd0a079e8
All checks were successful
continuous-integration/drone/push Build is passing
ruby:3-alpine3.13 to fix build
2021-10-27 10:07:39 +02:00

21 lines
647 B
Docker

FROM ruby:3-alpine3.13
LABEL org.opencontainers.image.authors="hanjo@bunix.de"
ENV DEV_PACKAGES="build-base libffi-dev"
RUN apk add --no-cache ${DEV_PACKAGES}
ARG JEKYLL_VERSION
RUN gem install jekyll -v ${JEKYLL_VERSION} --no-document \
&& gem install jekyll-paginate --no-document \
&& gem install jekyll-auto-image --no-document \
&& gem install jekyll-tidy --no-document \
&& gem install jekyll-sitemap --no-document \
&& gem install bigdecimal --no-document \
&& gem install kramdown-parser-gfm --no-document \
&& gem install webrick --no-document
RUN apk del ${DEV_PACKAGES} \
&& rm -rf /var/cache/apk/*