12 lines
166 B
Makefile
12 lines
166 B
Makefile
DOCKER_IMAGE := cr.annabunch.es/annabunches-static
|
|
|
|
.PHONY: all build push
|
|
|
|
all: build
|
|
|
|
build:
|
|
docker build -t ${DOCKER_IMAGE} .
|
|
|
|
push:
|
|
docker push ${DOCKER_IMAGE}
|