This repository has been archived on 2023-02-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
autonomic.zone/Dockerfile
T

14 lines
174 B
Docker

FROM decentral1se/jekyll:4
EXPOSE 4000
WORKDIR /usr/src/app
COPY . ${WORKDIR}
RUN bundle config --global frozen 1
RUN bundle install
CMD ["jekyll", "serve", "--trace"]