refac: rename build hash vars

This commit is contained in:
Jun Siang Cheah
2024-05-26 08:49:30 +01:00
parent a579f5f8cf
commit 4fdb26fdc4
8 changed files with 12 additions and 12 deletions

View File

@@ -26,7 +26,7 @@ COPY package.json package-lock.json ./
RUN npm ci
COPY . .
ENV WEBUI_VERSION=${BUILD_HASH}
ENV APP_BUILD_HASH=${BUILD_HASH}
RUN npm run build
######## WebUI backend ########
@@ -159,6 +159,6 @@ HEALTHCHECK CMD curl --silent --fail http://localhost:8080/health | jq -e '.stat
USER $UID:$GID
ENV WEBUI_VERSION=${BUILD_HASH}
ENV WEBUI_BUILD_VERSION=${BUILD_HASH}
CMD [ "bash", "start.sh"]