initial commit
This commit is contained in:
commit
213b1aad6c
714 changed files with 590265 additions and 0 deletions
8
Dockerfile.frontend
Normal file
8
Dockerfile.frontend
Normal file
|
@ -0,0 +1,8 @@
|
|||
FROM node:lts as builder
|
||||
WORKDIR /app
|
||||
COPY webui webui
|
||||
WORKDIR /app/webui
|
||||
RUN yarn run build-prod
|
||||
|
||||
FROM nginx:stable
|
||||
COPY --from=builder /app/webui/dist /usr/share/nginx/html
|
Loading…
Add table
Add a link
Reference in a new issue