fix(dashboard): correctly set current git commit hash during build

This commit is contained in:
spiral 2022-06-05 11:33:02 -04:00
parent 2e7f5c20aa
commit 7f816f50f7
No known key found for this signature in database
GPG Key ID: 244A11E4B0BCF40E

View File

@ -3,12 +3,14 @@ FROM alpine:latest as builder
RUN apk add nodejs-current yarn go git
COPY dashboard/ /build
COPY .git/ /build/.git
WORKDIR /build
RUN yarn install --frozen-lockfile
RUN yarn build
RUN go build -ldflags "-X dashboard/main.version=$(git rev-parse HEAD)"
RUN sh -c 'go build -ldflags "-X main.version=$(git rev-parse HEAD)"'
FROM alpine:latest