From b6e5d774cc7e63461e398aff271f103568e2b6a6 Mon Sep 17 00:00:00 2001 From: Jonas Leder <jonas@jonasled.de> Date: Wed, 13 Jan 2021 10:05:01 +0100 Subject: [PATCH] migrate from deprecated lib-sass to sass --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2d6f403..cbcba78 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,10 +4,10 @@ WORKDIR /build COPY . /build RUN mkdir /build/public/js RUN mkdir /build/public/css -RUN npm install -g node-sass +RUN npm install -g sass RUN npm install -g typescript RUN tsc -RUN node-sass scss --output public/css --output-style compressed +RUN sass scss/:public/css --style=compressed --no-source-map # Prepare Webserver ARG INSTALL_CRON=0 -- GitLab