Skip to content

Commit

Permalink
fix: set version info for Docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
songquanpeng committed Dec 10, 2022
1 parent 289d154 commit 7226277
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ jobs:
- name: Check out the repo
uses: actions/checkout@v3

- name: Save version info
run: |
git describe --tags > VERSION
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
Expand Down
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ FROM node:16 as builder

WORKDIR /build
COPY ./web .
COPY ./VERSION .
RUN npm install
RUN npm run build
RUN REACT_APP_VERSION=$(cat VERSION) npm run build

FROM golang AS builder2

Expand All @@ -15,7 +16,7 @@ WORKDIR /build
COPY . .
COPY --from=builder /build/build ./web/build
RUN go mod download
RUN go build -ldflags "-s -w -extldflags '-static'" -o gin-template
RUN go build -ldflags "-s -w -X 'gin-template/common.Version=$(cat VERSION)' -extldflags '-static'" -o gin-template

FROM alpine

Expand Down

0 comments on commit 7226277

Please sign in to comment.