10 lines
141 B
Makefile
10 lines
141 B
Makefile
|
IMAGE_NAME := images.abackstrom.com/rsync-ssh
|
||
|
|
||
|
image:
|
||
|
docker build -t $(IMAGE_NAME) .
|
||
|
|
||
|
push:
|
||
|
docker push $(IMAGE_NAME)
|
||
|
|
||
|
.PHONY: image push
|