We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfac8ef commit 311226eCopy full SHA for 311226e
server/Dockerfile
@@ -24,8 +24,9 @@ RUN if [ -f package-lock.json ]; then npm ci --production; else npm install --pr
24
# Copy built server
25
COPY --from=server-build /srv/server/dist ./dist
26
27
-# Copy built frontend to editor-dist so server can serve it
28
-COPY --from=web-build /web/editor/dist ./editor-dist
+# Copy built frontend from the editor image (nginx html location) so the server can serve it
+# The editor image places the built site at /usr/share/nginx/html
29
+COPY --from=web-build /usr/share/nginx/html ./editor-dist
30
31
EXPOSE 4000
32
ENV NODE_ENV=production
0 commit comments