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 40d3bdb commit ad2d802Copy full SHA for ad2d802
dev.Dockerfile
@@ -41,6 +41,12 @@ ARG TAPRPC_VERSION
41
# Need to restate this since running in a new container from above.
42
ARG NO_UI
43
44
+# Allow defining the CGO_ENABLED variable so we can build binaries
45
+# that will work in a different type of container.
46
+# `go` assumes `CGO_ENABLED=1` if not defined, but we make it explicit here
47
+# to be more clear of the default value.
48
+ARG CGO_ENABLED=1
49
+
50
# Install dependencies and install/build lightning-terminal.
51
RUN apk add --no-cache --update alpine-sdk make \
52
&& cd /go/src/github.com/lightninglabs/lightning-terminal \
0 commit comments