fix: 🐛 Use bun.lock inside Dockerfile

This commit is contained in:
Jesse Wierzbinski 2025-01-29 04:42:34 +01:00
parent 29b4cb43ca
commit cb60ed1c72
No known key found for this signature in database

View file

@ -6,7 +6,7 @@ FROM imbios/bun-node:22-alpine AS base
FROM base AS install
RUN mkdir -p /temp/dev
COPY package.json bun.lockb /temp/dev/
COPY package.json bun.lock /temp/dev/
COPY project.inlang /temp/dev/project.inlang
RUN cd /temp/dev && bun install --frozen-lockfile