15 lines
224 B
Makefile
15 lines
224 B
Makefile
|
|
|
|
all: build publish
|
|
|
|
|
|
|
|
build:
|
|
docker build -t yoursystemcz/code-formatter:latest .
|
|
|
|
publish:
|
|
docker push yoursystemcz/code-formatter:latest
|
|
|
|
exec:
|
|
docker run --rm -it --entrypoint bash yoursystemcz/code-formatter:latest
|