11 lines
201 B
Docker
11 lines
201 B
Docker
FROM alpine
|
|
|
|
RUN apk add --no-cache nodejs npm git curl
|
|
|
|
RUN npm i -g pnpm
|
|
|
|
RUN wget https://dl.min.io/client/mc/release/linux-arm64/mc -O /usr/bin/mc && \
|
|
chmod a+rx /usr/bin/mc
|
|
|
|
CMD ["/bin/ash"]
|