mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 04:27:39 +03:00
ci: use our own build script
This commit is contained in:
parent
4a08e5226b
commit
10282e0ffd
5 changed files with 69 additions and 92 deletions
11
Dockerfile
11
Dockerfile
|
@ -11,17 +11,12 @@ ENV GOPROXY ${GOPROXY}
|
|||
|
||||
COPY . /go/src/github.com/hynetwork/hysteria
|
||||
|
||||
WORKDIR /go/src/github.com/hynetwork/hysteria/cmd
|
||||
WORKDIR /go/src/github.com/hynetwork/hysteria
|
||||
|
||||
RUN set -ex \
|
||||
&& apk add git build-base \
|
||||
&& export VERSION=$(git describe --tags) \
|
||||
&& export COMMIT=$(git rev-parse HEAD) \
|
||||
&& export TIMESTAMP=$(date "+%F %T") \
|
||||
&& go build -trimpath -o /go/bin/hysteria -ldflags \
|
||||
"-w -s -X 'main.appVersion=${VERSION}' \
|
||||
-X 'main.appCommit=${COMMIT}' \
|
||||
-X 'main.appDate=${TIMESTAMP}'"
|
||||
&& ./build.sh \
|
||||
&& mv ./build/hysteria-* /go/bin/hysteria
|
||||
|
||||
# multi-stage builds to create the final image
|
||||
FROM alpine AS dist
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue