init
This commit is contained in:
commit
6238207ff9
17
Dockerfile
Normal file
17
Dockerfile
Normal file
@ -0,0 +1,17 @@
|
||||
FROM ruby:alpine
|
||||
|
||||
ENV BUILD_PACKAGES build-base nodejs
|
||||
ENV RUBY_PACKAGES py-pygments
|
||||
RUN apk update && \
|
||||
apk upgrade && \
|
||||
apk add $BUILD_PACKAGES && \
|
||||
apk add $RUBY_PACKAGES && \
|
||||
rm -rf /var/cache/apk/*
|
||||
|
||||
RUN gem install jekyll rdiscount kramdown jekyll-redirect-from rouge
|
||||
|
||||
VOLUME /srv/jekyll
|
||||
EXPOSE 4000
|
||||
|
||||
WORKDIR /srv/jekyll
|
||||
ENTRYPOINT ["jekyll"]
|
Loading…
Reference in New Issue
Block a user