We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30f9f29 commit 6603c45Copy full SHA for 6603c45
Dockerfile
@@ -28,7 +28,7 @@ RUN npm cache clean --force \
28
&& npm ci
29
30
# Run the build command if necessary
31
-RUN npm run build
+RUN cd src/gui && npm run build && cd -
32
33
# Production stage
34
FROM node:21-alpine
@@ -46,7 +46,7 @@ RUN mkdir -p /opt/puter/app
46
WORKDIR /opt/puter/app
47
48
# Copy built artifacts and necessary files from the build stage
49
-COPY --from=build /app/dist ./dist
+COPY --from=build /app/src/gui/dist ./dist
50
COPY --from=build /app/node_modules ./node_modules
51
COPY . .
52
0 commit comments