Add Dockerfile and build script
This commit is contained in:
parent
ffc9b632f4
commit
de3cf6354f
2 changed files with 6 additions and 0 deletions
3
Dockerfile
Normal file
3
Dockerfile
Normal file
|
@ -0,0 +1,3 @@
|
|||
FROM nginx:alpine
|
||||
EXPOSE 80
|
||||
COPY _site/ /usr/share/nginx/html
|
3
build.sh
Executable file
3
build.sh
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
docker run --rm -v "$(pwd):/srv/jekyll" jekyll/jekyll jekyll build
|
||||
docker build -t docker.data.coop/data-coop-website .
|
Loading…
Add table
Reference in a new issue