chore(dockerfile): fix git cmd missing

fix git cmd missing

Signed-off-by: mritd <mritd@linux.com>
This commit is contained in:
mritd 2021-04-13 20:30:01 +08:00
parent 71f3583deb
commit 93a8bde9bc
No known key found for this signature in database
GPG key ID: 98C41327E6D3E645

View file

@ -14,6 +14,7 @@ COPY . /go/src/github.com/tobyxdd/hysteria
WORKDIR /go/src/github.com/tobyxdd/hysteria/cmd
RUN set -ex \
&& apk add git \
&& export VERSION=$(git describe --tags) \
&& export COMMIT=$(git rev-parse HEAD) \
&& export TIMESTAMP=$(date "+%F %T") \