Centralise the docker image

This commit is contained in:
Luke Murphy 2020-05-01 13:41:07 +02:00
parent 333f000fcf
commit ff4617f318
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 12 additions and 1 deletions

View File

@ -1,4 +1,15 @@
FROM decentral1se/jekyll:4
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}