fix missing link calls

This commit is contained in:
Thomas Klaehn
2023-02-06 11:33:18 +01:00
parent 89a78993b5
commit 8c110e845b
10 changed files with 66 additions and 13 deletions

11
webui/Dockerfile Normal file
View 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