diff --git a/Dockerfile b/Dockerfile index d7c86e7..f35d856 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,9 +2,6 @@ FROM node:18-alpine AS base -# Install curl -RUN apk add --no-cache curl - # Install dependencies only when needed FROM base AS deps # Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed. @@ -57,8 +54,6 @@ COPY --from=builder /app/public ./public COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./ COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static -USER nextjs - EXPOSE 3000 ENV PORT=3000 diff --git a/next.config.ts b/next.config.ts index ee37fab..e0fb35a 100644 --- a/next.config.ts +++ b/next.config.ts @@ -2,8 +2,8 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ - output: "standalone", reactStrictMode: true, + output: "standalone", }; export default nextConfig;