There was an error while loading. Please reload this page.
1 parent 9d14b64 commit 36bc9c4Copy full SHA for 36bc9c4
1 file changed
app/next-client-app/Dockerfile
@@ -18,12 +18,13 @@ WORKDIR /app
18
RUN addgroup --system --gid 1001 nodejs \
19
&& adduser --system --uid 1001 nextjs
20
21
-# Copy only what’s needed for runtime
+# Copy only what's needed for runtime
22
COPY --from=builder /app/node_modules ./node_modules
23
COPY --from=builder /app/package.json ./package.json
24
COPY --from=builder /app/.next ./.next
25
COPY --from=builder /app/public ./public
26
COPY --from=builder /app/next.config.js ./next.config.js
27
+COPY --from=builder /app/constants ./constants
28
29
USER nextjs
30
0 commit comments