fix: Remove invalid --production=false flag from Dockerfile

Bun no longer accepts --production=false syntax. DevDependencies
are included by default during install.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-02-05 16:50:21 +00:00
parent 72192007e6
commit 4e5496ecf7
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ WORKDIR /app
COPY package.json bun.lockb* ./
# Install dependencies
RUN bun install --frozen-lockfile --production=false
RUN bun install --frozen-lockfile
# Copy source
COPY src/encryptid ./src/encryptid