Skip to content

Commit 4a2d722

Browse files
committed
fix: add bash to apk install in Dockerfile for dependency installation
1 parent 451d088 commit 4a2d722

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM --platform=$BUILDPLATFORM node:25-alpine AS base
22

33
# Stage 1: Install dependencies
44
FROM base AS deps
5-
RUN apk add --no-cache curl unzip
5+
RUN apk add --no-cache curl unzip bash
66
RUN curl -fsSL https://bun.sh/install | bash
77
ENV PATH="/root/.bun/bin:$PATH"
88
WORKDIR /app
@@ -11,7 +11,7 @@ RUN bun install --frozen-lockfile
1111

1212
# Stage 2: Build the application
1313
FROM base AS builder
14-
RUN apk add --no-cache curl unzip
14+
RUN apk add --no-cache curl unzip bash
1515
RUN curl -fsSL https://bun.sh/install | bash
1616
ENV PATH="/root/.bun/bin:$PATH"
1717
WORKDIR /app

0 commit comments

Comments
 (0)