From 5f2a7c2dd9611e25c0edf96b0e373d903f7aa9be Mon Sep 17 00:00:00 2001 From: Denshooter Date: Sun, 23 Feb 2025 17:53:04 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20chore:=20add=20type=20definitions?= =?UTF-8?q?=20for=20node-fetch=20in=20Dockerfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 45aa815..a9aeaec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,8 +13,8 @@ RUN npm install # Copy the application code COPY . . -# Install type definitions for react-responsive-masonry -RUN npm install --save-dev @types/react-responsive-masonry +# Install type definitions for react-responsive-masonry and node-fetch +RUN npm install --save-dev @types/react-responsive-masonry @types/node-fetch # Build the Next.js application RUN npm run build