From 943594143976b022bbc571fc2aeb93a48df38770 Mon Sep 17 00:00:00 2001 From: Minhyeok Park Date: Tue, 12 Nov 2024 18:54:12 +0900 Subject: [PATCH] feat: add build image for react build --- Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Dockerfile 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"]