Skip to content

Commit 4e7ebf1

Browse files
committed
Use the base node image because bun installation requires bash
1 parent a34ce8d commit 4e7ebf1

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
@@ -1,7 +1,7 @@
1-
FROM node:20-alpine3.19
1+
FROM node:20
22
WORKDIR /usr/src/app
33
ENV BUN_INSTALL="$HOME/.bun/"
4-
RUN wget -O - https://bun.sh/install | sh
4+
RUN curl -fsSL https://bun.sh/install | bash
55
ENV PATH="$BUN_INSTALL/bin:$PATH"
66
COPY . .
77
RUN bun install

0 commit comments

Comments
 (0)