Skip to content

Commit 6461aed

Browse files
authored
Bug: Mismatched build argument in WebUI Dockerfile prevents API URL configuration (#451)
* Create docker-build.yml * Update docker-build.yml * Update docker-build.yml * Update docker-build.yml * Update docker-build.yml * Create upstream-watcher.yml * Update upstream-watcher.yml * Delete .github/workflows/upstream-watcher.yml * Update docker-build.yml * Update docker-build.yml * Update docker-build.yml * Update docker-build.yml * Update docker-build.yml * Update docker-build.yml * Update docker-build.yml * Update docker-build.yml * Bug: Mismatched build argument in WebUI Dockerfile prevents API URL configuration * fix: remove build from this branch
1 parent 170448e commit 6461aed

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile_WebUI

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ COPY ./WebUI /usr/src/webui
44
WORKDIR /usr/src/webui
55
RUN yarn install
66
RUN npx browserslist@latest --update-db
7-
ARG VUE_APP_API_URL
8-
ENV VUE_APP_API_URL=${VUE_APP_API_URL:-http://localhost:8080}
7+
ARG VUE_APP_RESTAPI_URL
8+
ENV VUE_APP_RESTAPI_URL=${VUE_APP_RESTAPI_URL:-http://localhost:8080}
99
RUN yarn run build
1010

1111
FROM nginx:stable-alpine

0 commit comments

Comments
 (0)