Skip to content

Commit

Permalink
Add cURL.
Browse files Browse the repository at this point in the history
  • Loading branch information
FOREVEREALIZE committed Nov 19, 2023
1 parent 615e0ee commit 07a541c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
FROM node:18-alpine

RUN apk --no-cache add curl # Install cURL

RUN corepack enable # Enable Corepack (used for installing Yarn and pnpm later)
RUN curl -fsSL https://bun.sh/install | bash -s "bun-v1.0.12" # Install Bun (1.0.12)
RUN curl -fsSL https://bun.sh/install | sh -s "bun-v1.0.12" # Install Bun (1.0.12)

RUN npm install --global npm@10.2.4 # Version-pin npm (10.2.4)
RUN corepack install --global yarn@4.0.2 # Version-pin Yarn (4.0.2)
Expand Down

0 comments on commit 07a541c

Please sign in to comment.