forgejo-asciidoc/Makefile

14 lines
207 B
Makefile
Raw Normal View History

2022-06-09 20:05:24 +03:00
.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}