Skip to content

Commit 8973c58

Browse files
committed
include Makefile
1 parent f5266f4 commit 8973c58

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Makefile

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
REPOSITORY = kalelc/puma
2+
NAME = puma
3+
ENVIRONMENT = production
4+
5+
build:
6+
docker build --build-arg ENVIRONMENT=$(ENVIRONMENT) -t $(NAME) web/.
7+
tag:
8+
docker tag $(NAME) $(REPOSITORY)
9+
push: tag
10+
docker push $(REPOSITORY)

0 commit comments

Comments
 (0)