diff options
| author | Yehonal <yehonal.azeroth@gmail.com> | 2019-04-24 13:27:37 +0200 |
|---|---|---|
| committer | Yehonal <yehonal.azeroth@gmail.com> | 2019-04-24 13:28:29 +0200 |
| commit | 352cd1e503dc16ec5b2c35eb734c4c903736ac45 (patch) | |
| tree | f2954eb125cf489836e8828cb388848c977ca9a0 /Dockerfile | |
| parent | 1bedc132d59d7362d15daf4ef09efd7087760c97 (diff) | |
| download | wiki-352cd1e503dc16ec5b2c35eb734c4c903736ac45.tar.gz wiki-352cd1e503dc16ec5b2c35eb734c4c903736ac45.tar.bz2 wiki-352cd1e503dc16ec5b2c35eb734c4c903736ac45.zip | |
Implemented docker files
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..ad7f289 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM jekyll/jekyll:pages + +COPY Gemfile* /srv/jekyll/ + +WORKDIR /srv/jekyll + +RUN apk update && \ + apk add ruby-dev gcc make curl build-base libc-dev libffi-dev zlib-dev libxml2-dev libgcrypt-dev libxslt-dev python + +RUN bundle config build.nokogiri --use-system-libraries && \ + bundle install + +EXPOSE 4000
\ No newline at end of file |
