fix(build): 🐛 Change default build preset to bun

This commit is contained in:
Jesse Wierzbinski 2024-12-03 14:38:13 +01:00
parent 5503ff27e7
commit b4709dc00f
No known key found for this signature in database

View file

@ -13,7 +13,7 @@ FROM base AS builder
COPY . /app
COPY --from=install /temp/dev/node_modules /app/node_modules
RUN cd /app && bun run emojis:generate
RUN cd /app && bun run build --preset node-server
RUN cd /app && bun run build --preset bun
FROM oven/bun:1.1.38-alpine AS final