Skip to content

Commit 4e1f663

Browse files
committed
chore(frontend): update Dockerfile to use --no-frozen-lockfile for pnpm install
1 parent 9ef4835 commit 4e1f663

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN npm install -g pnpm
1111

1212
# Install dependencies first (caching)
1313
COPY package.json pnpm-lock.yaml ./
14-
RUN pnpm install --frozen-lockfile
14+
RUN pnpm install --no-frozen-lockfile
1515

1616
# Instalar explicitamente o next-runtime-env
1717
RUN pnpm add next-runtime-env
@@ -37,7 +37,7 @@ RUN npm install -g pnpm
3737

3838
# Install production dependencies only
3939
COPY package.json pnpm-lock.yaml ./
40-
RUN pnpm install --prod --frozen-lockfile
40+
RUN pnpm install --prod --no-frozen-lockfile
4141

4242
# Instalar explicitamente o next-runtime-env na produção
4343
RUN pnpm add next-runtime-env

0 commit comments

Comments
 (0)