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 9ef4835 commit 4e1f663Copy full SHA for 4e1f663
frontend/Dockerfile
@@ -11,7 +11,7 @@ RUN npm install -g pnpm
11
12
# Install dependencies first (caching)
13
COPY package.json pnpm-lock.yaml ./
14
-RUN pnpm install --frozen-lockfile
+RUN pnpm install --no-frozen-lockfile
15
16
# Instalar explicitamente o next-runtime-env
17
RUN pnpm add next-runtime-env
@@ -37,7 +37,7 @@ RUN npm install -g pnpm
37
38
# Install production dependencies only
39
40
-RUN pnpm install --prod --frozen-lockfile
+RUN pnpm install --prod --no-frozen-lockfile
41
42
# Instalar explicitamente o next-runtime-env na produção
43
0 commit comments