sync: update gui paths in Dockerfile

This commit is contained in:
KernelDeimos 2024-07-08 00:31:02 -04:00
parent 30f9f29982
commit 6603c45093

View File

@ -28,7 +28,7 @@ RUN npm cache clean --force \
&& npm ci
# Run the build command if necessary
RUN npm run build
RUN cd src/gui && npm run build && cd -
# Production stage
FROM node:21-alpine
@ -46,7 +46,7 @@ RUN mkdir -p /opt/puter/app
WORKDIR /opt/puter/app
# Copy built artifacts and necessary files from the build stage
COPY --from=build /app/dist ./dist
COPY --from=build /app/src/gui/dist ./dist
COPY --from=build /app/node_modules ./node_modules
COPY . .