We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9f7423 commit 755ee15Copy full SHA for 755ee15
Makefile
@@ -23,11 +23,8 @@ endif
23
24
ALPINE_IMAGE ?= 3.18
25
26
-DOCKERCLI ?= $(shell which docker)
27
GOBUILDLINKTARGET := ../../../..
28
29
-DOCKER_BUILD_CLI := $(DOCKERCLI) buildx build --build-arg "IMAGE=$(ALPINE_IMAGE)" --platform linux/$(GOARCH)
30
-
31
BUILDDIR ?= $(ROOTDIR)
32
33
GOBUILDDIR := $(BUILDDIR)/.gobuild
@@ -53,6 +50,9 @@ ifeq ("$(GOOS)", "windows")
53
50
GOEXE := .exe
54
51
endif
55
52
+DOCKERCLI ?= $(shell which docker)
+DOCKER_BUILD_CLI := $(DOCKERCLI) buildx build --build-arg "IMAGE=$(ALPINE_IMAGE)" --platform linux/$(GOARCH)
+
56
ARANGODB ?= arangodb/arangodb:latest
57
58
IP ?= $(shell hostname -I | cut -d ' ' -f 1)
0 commit comments