10 lines
255 B
Plaintext
10 lines
255 B
Plaintext
|
FROM docker:latest
|
||
|
|
||
|
# Install packages
|
||
|
RUN apk add --no-cache curl wget git bash
|
||
|
|
||
|
# Install Node 18
|
||
|
RUN apk add nodejs npm --update-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/main --allow-untrusted
|
||
|
|
||
|
# Install pnpm
|
||
|
RUN npm install -g pnpm
|