1
0
Fork 0

fix(gui): copy bundle to correct path within nginx image

This commit is contained in:
Sean Sube 2023-01-06 15:13:37 -06:00
parent 91c6f47d15
commit 225f5f15e2
2 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
FROM docker.io/nginx:1.22-alpine
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
COPY out/config.json /usr/share/nginx/html/config.json
COPY out/bundle/main.js /usr/share/nginx/html/bundle/main.js

View File

@ -1,5 +1,5 @@
FROM docker.io/nginx:1.22
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
COPY out/config.json /usr/share/nginx/html/config.json
COPY out/bundle/main.js /usr/share/nginx/html/bundle/main.js