forgejo-asciidoc/Makefile
2022-06-09 20:05:24 +03:00

14 lines
207 B
Makefile

.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}