Fix typo in COPY command for bun.lock file

This commit is contained in:
Eduard Prigoana 2026-01-27 23:29:01 +02:00 committed by GitHub
parent 684bf8c0ed
commit 07174cecef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,7 +5,7 @@ FROM oven/bun:canary-alpine
WORKDIR /app
# Copy package files first for caching
COPY package.json bun.lockb ./
COPY package.json bun.lock ./
# Install all dependencies (including devDeps)
RUN bun install