aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-02-08 12:50:27 +0100
committerEgor Tensin <Egor.Tensin@gmail.com>2023-02-08 12:50:27 +0100
commit0075c1b05a73e3d3a726d0df5cdd57c5f0a29461 (patch)
tree23a4a7cdb4a3b1508316226a776061aaabe21a3c
parentMakefile: remove obsolete recipes (diff)
downloadmath-server-0075c1b05a73e3d3a726d0df5cdd57c5f0a29461.tar.gz
math-server-0075c1b05a73e3d3a726d0df5cdd57c5f0a29461.zip
Makefile: a micro-fix
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 1456d04..26acca2 100644
--- a/Makefile
+++ b/Makefile
@@ -183,7 +183,8 @@ buildx/build/%: DO
-f '$*/Dockerfile' \
-t '$(call escape,$(DOCKER_USERNAME))/math-$*' \
--platform '$(call escape,$(DOCKER_PLATFORMS))' \
- --progress plain .
+ --progress plain \
+ .
.PHONY: buildx/build
buildx/build: buildx/build/client buildx/build/server
@@ -194,7 +195,8 @@ buildx/push/%: DO
-t '$(call escape,$(DOCKER_USERNAME))/math-$*' \
--platform '$(call escape,$(DOCKER_PLATFORMS))' \
--progress plain \
- --push .
+ --push \
+ .
.PHONY: buildx/push
buildx/push: buildx/push/client buildx/push/server