feat: add build image for react build

This commit is contained in:
Minhyeok Park 2024-11-12 18:54:12 +09:00
commit 9435941439
Signed by: pmh_only
SSH Key Fingerprint: SHA256:g/OyGvi2pcd8ub9mqge/ohmDP0fZX/xOPWPIcM+9XpI

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