mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 04:27:39 +03:00
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:
parent
5d43173673
commit
3614c80080
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue