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

16 lines
194 B
Docker
Raw Normal View History

2020-03-30 15:13:41 +00:00
FROM decentral1se/jekyll:4
EXPOSE 4000
WORKDIR /usr/src/app
COPY . ${WORKDIR}
2020-04-06 08:58:55 +00:00
COPY sbin/* /sbin/
2020-03-30 15:13:41 +00:00
RUN bundle config --global frozen 1
RUN bundle install
2020-03-31 12:37:09 +00:00
ENTRYPOINT ["/sbin/entrypoint.sh"]