From 458875dabeed6cd97e235471278932e6a046c849 Mon Sep 17 00:00:00 2001 From: TheMaddax Date: Sat, 23 Nov 2024 21:09:28 -0600 Subject: [PATCH] Update required type declarations and dev dependencies --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7ab1fc5..ecaf62e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,9 +15,10 @@ RUN npm install -g npm@latest COPY package*.json ./ RUN npm ci --no-optional --platform=linux --arch=x64 --libc=musl RUN npm install -g typescript -RUN npm install --save-dev @types/react-dom +RUN npm install --save-dev @types/react-dom @types/react @types/node RUN npm install @rollup/rollup-linux-x64-musl RUN npm install esbuild@0.21.5 +RUN npm install vite @vitejs/plugin-react --save-dev # Copy source code and build COPY . .