fix: update Dockerfile to use bun.lock* instead of package-lock.json

This commit is contained in:
Khoa Vo 2026-04-27 18:43:16 +07:00
parent b81da30c63
commit 4c2b3cdbee

View file

@ -15,7 +15,7 @@ ARG POCKETBASE_URL
ARG SESSION_MAX_AGE ARG SESSION_MAX_AGE
# Copy package files first for caching # Copy package files first for caching
COPY package.json package-lock.json ./ COPY package.json bun.lock* ./
# Install dependencies (Node) # Install dependencies (Node)
RUN bun install RUN bun install