summaryrefslogtreecommitdiffhomepage
path: root/Dockerfile
diff options
context:
space:
mode:
authorDavid Anderson <danderson@tailscale.com>2023-02-13 16:56:22 -0800
committerDavid Anderson <danderson@tailscale.com>2023-02-13 16:56:22 -0800
commitdbd2148b945147a88f12eb59c17a741b7731eba1 (patch)
tree64ec4ae73c3c525df4011295708b0c00a6ab7f17 /Dockerfile
parent5ac12a3e4de95bb30541041ee153db3622f9bda6 (diff)
downloadtailscale-danderson/mkversion.tar.xz
tailscale-danderson/mkversion.zip
Dockerfile: fix docker builddanderson/mkversion
The stamp vars got renamed and I forgot to update these scripts. Signed-off-by: David Anderson <danderson@tailscale.com>
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index e2263f8dc..12df5f5d8 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -62,9 +62,9 @@ ENV VERSION_GIT_HASH=$VERSION_GIT_HASH
ARG TARGETARCH
RUN GOARCH=$TARGETARCH go install -ldflags="\
- -X tailscale.com/version.long=$VERSION_LONG \
- -X tailscale.com/version.short=$VERSION_SHORT \
- -X tailscale.com/version.gitCommit=$VERSION_GIT_HASH" \
+ -X tailscale.com/version.longStamp=$VERSION_LONG \
+ -X tailscale.com/version.shortStamp=$VERSION_SHORT \
+ -X tailscale.com/version.gitCommitStamp=$VERSION_GIT_HASH" \
-v ./cmd/tailscale ./cmd/tailscaled ./cmd/containerboot
FROM alpine:3.16