diff --git a/Dockerfile b/Dockerfile index 3c90c24a3..099c87bba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -40,17 +40,17 @@ RUN npm install -g pnpm && \ fi # Copy built assets from the base stage -COPY --from=base /app/.next ./.next -COPY --from=base /app/public ./public -COPY --from=base /app/next.config.js ./next.config.js -COPY --from=base /app/components ./components -COPY --from=base /app/context ./context -COPY --from=base /app/lib ./lib -COPY --from=base /app/translation ./translation -COPY --from=base /app/utils ./utils -COPY --from=base /app/middleware.ts ./middleware.ts -COPY --from=base /app/auth.ts ./auth.ts -COPY --from=base /app/components.json ./components.json +COPY --from=base /app ./ +# COPY --from=base /app/public ./public +# COPY --from=base /app/next.config.js ./next.config.js +# COPY --from=base /app/components ./components +# COPY --from=base /app/context ./context +# COPY --from=base /app/lib ./lib +# COPY --from=base /app/translation ./translation +# COPY --from=base /app/utils ./utils +# COPY --from=base /app/middleware.ts ./middleware.ts +# COPY --from=base /app/auth.ts ./auth.ts +# COPY --from=base /app/components.json ./components.json # Expose the port the app runs on EXPOSE 3000