1
0
Fork 0

fix(gui): correct paths in nginx image

This commit is contained in:
Sean Sube 2023-01-06 15:08:15 -06:00
parent ee6cf50df7
commit 7f2371163e
2 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
FROM docker.io/nginx:1.22-alpine
COPY out/bundle/index.html /usr/share/nginx/html/index.html
COPY out/bundle/config.json /usr/share/nginx/html/configl.json
COPY out/index.html /usr/share/nginx/html/index.html
COPY out/config.json /usr/share/nginx/html/configl.json
COPY out/bundle/main.js /usr/share/nginx/html/main.js

View File

@ -1,5 +1,5 @@
FROM docker.io/nginx:1.22
COPY out/bundle/index.html /usr/share/nginx/html/index.html
COPY out/bundle/config.json /usr/share/nginx/html/configl.json
COPY out/index.html /usr/share/nginx/html/index.html
COPY out/config.json /usr/share/nginx/html/configl.json
COPY out/bundle/main.js /usr/share/nginx/html/main.js