cleanup bun process in builds

This commit is contained in:
Aidan 2025-08-22 01:40:05 -04:00
parent 5707673905
commit cac9b00b30

View file

@ -3,8 +3,8 @@ FROM oven/bun:latest AS base
FROM base AS deps
WORKDIR /app
COPY package.json bun.lockb* ./
RUN bun install --frozen-lockfile
COPY package.json ./
RUN bun install
FROM base AS builder
WORKDIR /app