ci(build): 💚 Include dev dependencies during CI build

This commit is contained in:
Jesse Wierzbinski 2024-12-07 18:34:09 +01:00
parent f96b18f116
commit 02d9869737
No known key found for this signature in database

View file

@ -6,7 +6,7 @@ FROM base AS install
RUN mkdir -p /temp/dev RUN mkdir -p /temp/dev
COPY package.json bun.lockb /temp/dev/ COPY package.json bun.lockb /temp/dev/
RUN cd /temp/dev && bun install --production --frozen-lockfile RUN cd /temp/dev && bun install --frozen-lockfile
FROM base AS builder FROM base AS builder