diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-08 12:50:27 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-08 12:50:27 +0100 |
commit | 0075c1b05a73e3d3a726d0df5cdd57c5f0a29461 (patch) | |
tree | 23a4a7cdb4a3b1508316226a776061aaabe21a3c /Makefile | |
parent | Makefile: remove obsolete recipes (diff) | |
download | math-server-0075c1b05a73e3d3a726d0df5cdd57c5f0a29461.tar.gz math-server-0075c1b05a73e3d3a726d0df5cdd57c5f0a29461.zip |
Makefile: a micro-fix
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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 |