chore(docker): fix special date format causing build failed

fix special date format causing build failed

Signed-off-by: mritd <mritd@linux.com>
This commit is contained in:
mritd 2020-08-07 12:11:38 +08:00
parent 5d43173673
commit 3614c80080
No known key found for this signature in database
GPG key ID: 98C41327E6D3E645

View file

@ -29,9 +29,9 @@ WORKDIR /go/src/github.com/tobyxdd/hysteria/cmd
# TODO: Is it necessary to remove "-w -s" to add debugging information?
RUN set -ex \
&& go build -o /go/bin/hysteria -ldflags \
"-w -s -X main.appVersion=${VERSION} \
-X main.appCommit=${COMMIT} \
-X main.appDate=${TIMESTAMP}"
"-w -s -X 'main.appVersion=${VERSION}' \
-X 'main.appCommit=${COMMIT}' \
-X 'main.appDate=${TIMESTAMP}'"
# multi-stage builds to create the final image
FROM alpine:3.12 AS dist