Files
jekyll-build-pages/Dockerfile

10 lines
154 B
Docker

FROM jekyll/minimal:latest
USER root
RUN apk --no-cache add build-base
EXPOSE 4000/tcp
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]