Remove build scripts and replace with simple makefile.

This commit is contained in:
Anna Rose 2019-12-04 19:05:02 -05:00
parent 43feaa88d4
commit c7a2e5f57c
3 changed files with 10 additions and 7 deletions

10
Makefile Normal file
View 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}

View File

@ -1,4 +0,0 @@
#!/bin/sh
jekyll build
docker build -t cr.annabunch.es/annabunches-static .

View File

@ -1,3 +0,0 @@
#!/bin/sh
docker push cr.annabunch.es/annabunches-static