fix missing link calls
This commit is contained in:
11
webui/Dockerfile
Normal file
11
webui/Dockerfile
Normal file
@@ -0,0 +1,11 @@
|
||||
FROM node:latest AS build
|
||||
WORKDIR /app
|
||||
COPY package.json ./
|
||||
COPY package-lock.json ./
|
||||
RUN npm install
|
||||
COPY . ./
|
||||
RUN npm run build
|
||||
|
||||
FROM nginx:1.19-alpine
|
||||
COPY --from=build /app/build /usr/share/nginx/html
|
||||
|
Reference in New Issue
Block a user