react2minio/Dockerfile
Minhyeok Park 36c21efb5f
All checks were successful
/ deploy_image (push) Successful in 1m7s
feat: add essential commands
2024-11-12 10:56:24 +00:00

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"]