We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b420d36 commit 24b0e66Copy full SHA for 24b0e66
docs/pages/getting-started/deployment.mdx
@@ -107,6 +107,7 @@ Our example application is also hosted via Docker [here](https://nextjs-docker-e
107
108
```docker filename="Dockerfile"
109
# syntax=docker/dockerfile:1
110
+# syntax=docker/dockerfile:1
111
FROM node:20-alpine AS base
112
113
# Install dependencies only when needed
@@ -130,9 +131,6 @@ COPY . .
130
131
# Uncomment the following line in case you want to disable telemetry during the build.
132
# ENV NEXT_TELEMETRY_DISABLED 1
133
-ARG AUTH_SECRET
134
-ENV AUTH_SECRET $AUTH_SECRET
135
-
136
RUN corepack enable pnpm && pnpm build
137
138
# Production image, copy all the files and run next
0 commit comments