diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..6fa6f52 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,3 @@ +FROM nginx:alpine +EXPOSE 80 +COPY _site/ /usr/share/nginx/html diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..a187134 --- /dev/null +++ b/build.sh @@ -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 .