Enable docker builds for the site

This commit is contained in:
Luke Murphy
2020-03-30 17:13:41 +02:00
parent eb38c9514a
commit 97857a8c27
7 changed files with 37 additions and 45 deletions

13
Dockerfile Normal file
View File

@ -0,0 +1,13 @@
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"]