From 2c66e2f6af63c4383b313e6acc50468f4ffe5ca9 Mon Sep 17 00:00:00 2001 From: Rishi Ghan Date: Fri, 17 May 2024 10:36:41 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=B3=20Explicitly=20installing=20sass?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9576429..59b4d8f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,8 @@ RUN apk --no-cache add g++ make libpng-dev git python3 autoconf automake libjpeg # Install node modules RUN yarn install --ignore-engines - +# Explicitly install sass +RUN yarn add -D sass # Copy the rest of the application COPY . .