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:
parent
72192007e6
commit
4e5496ecf7
|
|
@ -10,7 +10,7 @@ WORKDIR /app
|
||||||
COPY package.json bun.lockb* ./
|
COPY package.json bun.lockb* ./
|
||||||
|
|
||||||
# Install dependencies
|
# Install dependencies
|
||||||
RUN bun install --frozen-lockfile --production=false
|
RUN bun install --frozen-lockfile
|
||||||
|
|
||||||
# Copy source
|
# Copy source
|
||||||
COPY src/encryptid ./src/encryptid
|
COPY src/encryptid ./src/encryptid
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue