5 lines
159 B
Makefile
5 lines
159 B
Makefile
.PHONY: deploy
|
|
deploy: # build and deploy the latest version of the image.
|
|
docker build -t netfluxio/homepage:latest .
|
|
docker push netfluxio/homepage:latest
|