You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I verified that the issue exists in the latest Next.js canary release
Provide environment information
render.com docker
Which example does this report relate to?
With Docker
What browser are you using? (if relevant)
No response
How are you deploying your application? (if relevant)
render.com
Describe the Bug
web browser return 502, but in render.com dashboard have no error log
Expected Behavior
show my web site . in my VM is OK, but in render.com is not work.
To Reproduce
the docker fille will get error
# Install dependencies only when neededFROM node:lts-alpine AS deps# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.RUN apk add --no-cache libc6-compat curlWORKDIR /app# Install dependencies based on the preferred package managerCOPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* .npmrc ./RUN \if [ -f yarn.lock ]; then yarn --frozen-lockfile; \elif [ -f package-lock.json ]; then npm ci; \elif [ -f pnpm-lock.yaml ]; then yarn global add pnpm && pnpm i; \else echo "Lockfile not found." && exit 1; \fi# Rebuild the source code only when neededFROM node:lts-alpine AS builderWORKDIR /appCOPY --from=deps /app/node_modules ./node_modulesCOPY . .# Next.js collects completely anonymous telemetry data about general usage.# Learn more here: https://nextjs.org/telemetry# Uncomment the following line in case you want to disable telemetry during the build.# ENV NEXT_TELEMETRY_DISABLED 1RUN CI=true yarn build# If using npm comment out above and use below instead# RUN npm run build# Production image, copy all the files and run nextFROM node:lts-alpine AS runnerWORKDIR /appENV NODE_ENV=production# Uncomment the following line in case you want to disable telemetry during runtime.# ENV NEXT_TELEMETRY_DISABLED 1RUN addgroup --system --gid 1001 nodejsRUN adduser --system --uid 1001 nextjsCOPY --from=builder /app/public ./public# Automatically leverage output traces to reduce image size# https://nextjs.org/docs/advanced-features/output-file-tracingCOPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/staticUSER nextjsEXPOSE 3000ENV PORT=3000CMD ["node", "server.js"]
I change dockerfile to fix
FROM node:20-slim AS baseRUN apt-get update && \apt-get install ca-certificates curl libjemalloc-dev -y --no-install-recommends && \rm -rf /var/lib/apt/lists/*# set environment variable to preload JEMallocENV LD_PRELOAD="/usr/lib/x86_64-linux-gnu/libjemalloc.so.2"# set GC time, set arenas number, set background_thread run GCENV MALLOC_CONF=dirty_decay_ms:1000,narenas:2,background_thread:trueENV PNPM_HOME="/pnpm"ENV PATH="$PNPM_HOME:$PATH"RUN corepack enableCOPY . /appWORKDIR /appFROM base AS buildRUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm i --frozen-lockfileRUN CI=true pnpm buildFROM baseCOPY --from=build /app/.next/standalone ./COPY --from=build /app/public ./publicCOPY --from=build /app/.next/static ./.next/staticEXPOSE 3000ENV PORT=3000ENV HOSTNAME="0.0.0.0"CMD ["node", "server.js"]
The text was updated successfully, but these errors were encountered:
Verify canary release
Provide environment information
Which example does this report relate to?
With Docker
What browser are you using? (if relevant)
No response
How are you deploying your application? (if relevant)
render.com
Describe the Bug
web browser return 502, but in render.com dashboard have no error log
Expected Behavior
show my web site . in my VM is OK, but in render.com is not work.
To Reproduce
the docker fille will get error
I change dockerfile to fix
The text was updated successfully, but these errors were encountered: