6 lines
151 B
Text
6 lines
151 B
Text
|
FROM alpine:latest
|
||
|
|
||
|
RUN apk add --no-cache curl git git-lfs zip unzip docker nodejs npm && \
|
||
|
npm install --global yarn pnpm
|
||
|
|
||
|
ENTRYPOINT ["/bin/sh"]
|