commit 943594143976b022bbc571fc2aeb93a48df38770 Author: Minhyeok Park Date: Tue Nov 12 18:54:12 2024 +0900 feat: add build image for react build diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..49b173c --- /dev/null +++ b/Dockerfile @@ -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"]