Skip to content

Commit 75481ef

Browse files
committed
chore: expermenting with bun instead of node
1 parent 595472c commit 75481ef

File tree

4 files changed

+1244
-8384
lines changed

4 files changed

+1244
-8384
lines changed

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
FROM node:24-alpine AS frontend-builder
1+
FROM oven/bun:alpine AS frontend-builder
22

33
WORKDIR /app/frontend
44

5-
COPY frontend/package*.json ./
5+
COPY frontend/package.json frontend/bun.lockb* ./
66

7-
RUN npm install
7+
RUN bun install --frozen-lockfile
88

99
COPY frontend/ .
1010

11-
RUN npm run build
11+
RUN bun run build
1212

1313
FROM golang:1.24.4-alpine AS backend-builder
1414

0 commit comments

Comments
 (0)