11 lines
192 B
Docker
11 lines
192 B
Docker
|
FROM alpine
|
||
|
|
||
|
RUN apk add --no-cache nodejs npm
|
||
|
|
||
|
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"]
|