docker: disable buildvcs for docker builds
Adin Schmahmann committed
May 4, 2022 at 10:54 UTC
ff832cb9922a774d69cf1a4db880a37251ec12ba
1 file changed
+1
-1
Dockerfile
+1
-1
@@ -25,7 +25,7 @@ ARG IPFS_PLUGINS
25
# Also: fix getting HEAD commit hash via git rev-parse.
26
RUN cd $SRC_DIR \
27
&& mkdir -p .git/objects \
28
- && make build GOTAGS=openssl IPFS_PLUGINS=$IPFS_PLUGINS
28
+ && GOFLAGS=-buildvcs=false make build GOTAGS=openssl IPFS_PLUGINS=$IPFS_PLUGINS
29
30
# Get su-exec, a very minimal tool for dropping privileges,
31
# and tini, a very minimal init daemon for containers