We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5266f4 commit 8973c58Copy full SHA for 8973c58
Makefile
@@ -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