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 451d088 commit 4a2d722Copy full SHA for 4a2d722
Dockerfile
@@ -2,7 +2,7 @@ FROM --platform=$BUILDPLATFORM node:25-alpine AS base
2
3
# Stage 1: Install dependencies
4
FROM base AS deps
5
-RUN apk add --no-cache curl unzip
+RUN apk add --no-cache curl unzip bash
6
RUN curl -fsSL https://bun.sh/install | bash
7
ENV PATH="/root/.bun/bin:$PATH"
8
WORKDIR /app
@@ -11,7 +11,7 @@ RUN bun install --frozen-lockfile
11
12
# Stage 2: Build the application
13
FROM base AS builder
14
15
16
17
0 commit comments