We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 595472c commit 75481efCopy full SHA for 75481ef
Dockerfile
@@ -1,14 +1,14 @@
1
-FROM node:24-alpine AS frontend-builder
+FROM oven/bun:alpine AS frontend-builder
2
3
WORKDIR /app/frontend
4
5
-COPY frontend/package*.json ./
+COPY frontend/package.json frontend/bun.lockb* ./
6
7
-RUN npm install
+RUN bun install --frozen-lockfile
8
9
COPY frontend/ .
10
11
-RUN npm run build
+RUN bun run build
12
13
FROM golang:1.24.4-alpine AS backend-builder
14
0 commit comments