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 20dda23 commit 9bdab19Copy full SHA for 9bdab19
Makefile
@@ -1,5 +1,6 @@
1
TARGETS := $(shell ls scripts | grep -v \\.sh)
2
GO_FILES ?= $$(find . -name '*.go' | grep -v generated)
3
+SHELL := /bin/bash
4
5
6
.dapper:
@@ -9,7 +10,11 @@ GO_FILES ?= $$(find . -name '*.go' | grep -v generated)
9
10
@./.dapper.tmp -v
11
@mv .dapper.tmp .dapper
12
-$(TARGETS): .dapper
13
+.PHONY: docker.sock
14
+docker.sock:
15
+ while ! docker version 1>/dev/null; do sleep 1; done
16
+
17
+$(TARGETS): .dapper docker.sock
18
./.dapper $@
19
20
.PHONY: deps
@@ -42,4 +47,4 @@ format:
42
47
local:
43
48
DOCKER_BUILDKIT=1 docker build \
44
49
--build-arg="REPO TAG GITHUB_TOKEN GOLANG GOCOVER DEBUG" \
45
- -t k3s-local -f Dockerfile.local --output=. .
50
+ -t k3s-local -f Dockerfile.local --output=. .
0 commit comments