From 24b0e66ec81d097f0d0e9b0a81fade748d31df5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Orb=C3=A1n?= Date: Tue, 11 Jun 2024 19:47:12 +0100 Subject: [PATCH] docs: Update deployment.mdx --- docs/pages/getting-started/deployment.mdx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/pages/getting-started/deployment.mdx b/docs/pages/getting-started/deployment.mdx index f3820b5616..96ff2c5dfa 100644 --- a/docs/pages/getting-started/deployment.mdx +++ b/docs/pages/getting-started/deployment.mdx @@ -107,6 +107,7 @@ Our example application is also hosted via Docker [here](https://nextjs-docker-e ```docker filename="Dockerfile" # syntax=docker/dockerfile:1 +# syntax=docker/dockerfile:1 FROM node:20-alpine AS base # Install dependencies only when needed @@ -130,9 +131,6 @@ COPY . . # Uncomment the following line in case you want to disable telemetry during the build. # ENV NEXT_TELEMETRY_DISABLED 1 -ARG AUTH_SECRET -ENV AUTH_SECRET $AUTH_SECRET - RUN corepack enable pnpm && pnpm build # Production image, copy all the files and run next