Skip to content

Commit e2114f5

Browse files
committed
chore: replace build.sh with makefile
1 parent ae92932 commit e2114f5

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

Makefile

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
IMGNAME := kanna5/httpbin
2+
3+
image:
4+
DOCKER_BUILDKIT=1 docker build --no-cache -t $(IMGNAME) .
5+
6+
push:
7+
docker push $(IMGNAME)
8+
9+
.PHONY: image push

build.sh

-3
This file was deleted.

0 commit comments

Comments
 (0)