Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile_WebUI
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ COPY ./WebUI /usr/src/webui
WORKDIR /usr/src/webui
RUN yarn install
RUN npx browserslist@latest --update-db
ARG VUE_APP_API_URL
ENV VUE_APP_API_URL=${VUE_APP_API_URL:-http://localhost:8080}
ARG VUE_APP_RESTAPI_URL
ENV VUE_APP_RESTAPI_URL=${VUE_APP_RESTAPI_URL:-http://localhost:8080}
RUN yarn run build

FROM nginx:stable-alpine
Expand Down