From 27f3beba2bfa38fca2d3be112312068649035a2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hauke=20T=C3=B6njes?= Date: Tue, 29 Jun 2021 16:05:14 +0200 Subject: [PATCH] Removed server.js and next.config.js from Dockerfile - no longer used --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 56459b4..850563f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,8 +23,7 @@ RUN addgroup -g 1001 -S nodejs RUN adduser -S nextjs -u 1001 # You only need to copy next.config.js if you are NOT using the default configuration -COPY --from=builder /app/next.config.js ./ -COPY --from=builder /app/server.js ./ +# COPY --from=builder /app/next.config.js ./ COPY --from=builder /app/public ./public COPY --from=builder --chown=nextjs:nodejs /app/.next ./.next COPY --from=builder /app/node_modules ./node_modules