This repository has been archived on 2023-02-03. You can view files and clone it, but cannot push or open issues or pull requests.
autonomic.zone/Dockerfile
Luke Murphy caa1e521ad
All checks were successful
continuous-integration/drone/push Build is passing
Experiment with full pre-deploy setup
2020-04-06 10:58:55 +02:00

16 lines
194 B
Docker

FROM decentral1se/jekyll:4
EXPOSE 4000
WORKDIR /usr/src/app
COPY . ${WORKDIR}
COPY sbin/* /sbin/
RUN bundle config --global frozen 1
RUN bundle install
ENTRYPOINT ["/sbin/entrypoint.sh"]