Add makefile

This commit is contained in:
Marko Korhonen 2022-06-09 20:05:24 +03:00
parent 999396e2f0
commit af15d220b3
No known key found for this signature in database
GPG key ID: 911B85FBC6003FE5

13
Makefile Normal file
View file

@ -0,0 +1,13 @@
.PHONY: pull image push
REPO=docker.io
IMAGE=functionalhacker/gitea-asciidoc
pull:
@docker pull gitea/gitea:1
image: pull
@docker build . -t ${REPO}/${IMAGE}
push: image
@docker push ${REPO}/${IMAGE}