feat: add build image for react build

This commit is contained in:
2024-11-12 18:54:12 +09:00
commit 9435941439

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
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"]