diff options
author | Christian Segundo | 2022-11-05 21:40:29 +0100 |
---|---|---|
committer | Christian Segundo | 2022-11-05 21:40:29 +0100 |
commit | a05f6f5ad43b76c88c13c7ef96f71f7ec2284b06 (patch) | |
tree | c52ce210b785e474bf1041a0e555472be713c953 /Makefile | |
parent | 60e144e41c490a5d7cac877158fdf57bf1fc0266 (diff) | |
download | nvim-a05f6f5ad43b76c88c13c7ef96f71f7ec2284b06.tar.gz |
fix build
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -32,12 +32,10 @@ setup-buildx: push: setup-buildx docker buildx build \ - --build-arg GOVERSION=$(GOVERSION) \ --platform $(IMAGE_PLATFORMS) \ -t $(IMAGE_NAME):latest . --push if git describe --exact-match; then \ docker buildx build \ - --build-arg GOVERSION=$(GOVERSION) \ --platform $(IMAGE_PLATFORMS) \ -t $(IMAGE_NAME):$(shell git describe --tags --abbrev=0) . --push; \ fi @@ -50,6 +48,6 @@ docker-%: -v /var/run/docker.sock:/var/run/docker.sock \ -v $(shell pwd):/data \ -w /data $(DOCKER_EXTRA_ARGS) \ - golang:$(GOVERSION) sh -c "\ + debian:latest sh -c "\ apt-get update && \ apt-get install -y $$DOCKER_DEPS && make $*" |