Updated makefile

This commit is contained in:
Marcus Noble 2020-12-08 19:33:13 +00:00
parent e061b14eec
commit dc23ce61fc
1 changed files with 3 additions and 3 deletions

View File

@ -38,8 +38,8 @@ docker-publish:
@docker push $(IMAGE) @docker push $(IMAGE)
.PHONY: run # Run the application .PHONY: run # Run the application
run: run: docker-build
@echo "⚠️ 'run' unimplemented" @docker run -it -p 8000:8080 $(IMAGE)
.PHONY: ci # Perform CI specific tasks to perform on a pull request .PHONY: ci # Perform CI specific tasks to perform on a pull request
ci: ci:
@ -47,7 +47,7 @@ ci:
.PHONY: release # Release the latest version of the application .PHONY: release # Release the latest version of the application
release: release:
@echo "⚠️ 'release' unimplemented" @kubectl --namespace dashboard set image deployment svg-to-dxf web=docker.cluster.fun/averagemarcus/svg-to-dxf:$(SHA)
.PHONY: help # Show this list of commands .PHONY: help # Show this list of commands
help: help: