7 lines
128 B
Makefile
7 lines
128 B
Makefile
.PHONY: image
|
|
image:
|
|
docker build -t atechnohazard/katbin-elixir .
|
|
|
|
.PHONY: push
|
|
push:
|
|
docker push atechnohazard/katbin-elixir
|