Remove build scripts and replace with simple makefile.
This commit is contained in:
parent
43feaa88d4
commit
c7a2e5f57c
3 changed files with 10 additions and 7 deletions
10
Makefile
Normal file
10
Makefile
Normal file
|
@ -0,0 +1,10 @@
|
|||
DOCKER_IMAGE := cr.annabunch.es/annabunches-static
|
||||
|
||||
all: site
|
||||
|
||||
site:
|
||||
jekyll build
|
||||
docker build -t ${DOCKER_IMAGE} .
|
||||
|
||||
push:
|
||||
docker push ${DOCKER_IMAGE}
|
4
build.sh
4
build.sh
|
@ -1,4 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
jekyll build
|
||||
docker build -t cr.annabunch.es/annabunches-static .
|
3
push.sh
3
push.sh
|
@ -1,3 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
docker push cr.annabunch.es/annabunches-static
|
Loading…
Add table
Add a link
Reference in a new issue