Skip to content

Commit

Permalink
fix version display
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan committed May 16, 2024
1 parent 6385f20 commit 3871c33
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ jobs:
${{ env.DOC_UI_TAG_BRANCH }}
${{ env.DOC_UI_TAG_LATEST }}
build-args: |
PUBLIC_DOC_VERSION=${{ env.PUBLIC_DOC_VERSION }}
PUBLIC_DOC_BUILD_TIMESTAMP=${{ env.PUBLIC_DOC_BUILD_TIMESTAMP }}
PUBLIC_DOC_VERSION_ARG=${{ env.PUBLIC_DOC_VERSION }}
PUBLIC_DOC_BUILD_TIMESTAMP_ARG=${{ env.PUBLIC_DOC_BUILD_TIMESTAMP }}
cache-from: type=gha
cache-to: type=gha,mode=max
Deploy-develop:
Expand Down
4 changes: 2 additions & 2 deletions frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ FROM nginx:1.25-bookworm as production

ARG PUBLIC_DOC_VERSION_ARG
ARG PUBLIC_DOC_BUILD_TIMESTAMP_ARG
ENV PUBLIC_DOC_VERSION=${PUBLIC_DOC_VERSION_ARG}
ENV PUBLIC_DOC_BUILD_TIMESTAMP=${PUBLIC_DOC_BUILD_TIMESTAMP_ARG}
ENV PUBLIC_DOC_VERSION ${PUBLIC_DOC_VERSION_ARG}
ENV PUBLIC_DOC_BUILD_TIMESTAMP ${PUBLIC_DOC_BUILD_TIMESTAMP_ARG}

RUN apt-get update && apt-get install nodejs npm -y
RUN npm install pm2 -g
Expand Down

0 comments on commit 3871c33

Please sign in to comment.