docker-images/gitea-runner/NodeWithPnpmLatestDockerfile

10 lines
255 B
Plaintext
Raw Normal View History

2023-10-15 00:08:50 +00:00
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