Compare commits

...

2 commits

Author SHA1 Message Date
Jesper Hess 0e2e780c0b
Dockerize the website 2019-03-02 20:13:07 +01:00
Jesper Hess b69b91aac0
Update bundler dependencies 2019-03-02 20:12:54 +01:00
3 changed files with 8 additions and 2 deletions

3
Dockerfile Normal file
View file

@ -0,0 +1,3 @@
FROM nginx:alpine
EXPOSE 80
COPY _site/ /usr/share/nginx/html

View file

@ -67,7 +67,7 @@ DEPENDENCIES
tzinfo-data
RUBY VERSION
ruby 2.5.3p105
ruby 2.6.1p33
BUNDLED WITH
1.17.1
1.17.3

3
build.sh Executable file
View file

@ -0,0 +1,3 @@
#!/bin/bash
docker run --rm -v "$(pwd):/srv/jekyll" jekyll/jekyll jekyll build
docker build -t docker.data.coop/cryptohagen-website .