Dockerize the website

Este commit está contenido en:
Jesper Hess 2019-03-02 20:13:07 +01:00
padre b69b91aac0
commit 0e2e780c0b
Firmado por usuario no fiable: graffen
ID de clave GPG: 351A89E40D763F0F
Se han modificado 2 ficheros con 6 adiciones y 0 borrados

3
Dockerfile Archivo normal
Ver fichero

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

3
build.sh Archivo ejecutable
Ver fichero

@ -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 .