From 3e92b492a4f172aeb45cef51b4d63f2618260856 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Wed, 23 Feb 2022 02:57:18 +0800 Subject: [PATCH] No use `make` for compile css --- django/entrypoint.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/django/entrypoint.sh b/django/entrypoint.sh index 425bac1..02eaa54 100644 --- a/django/entrypoint.sh +++ b/django/entrypoint.sh @@ -152,7 +152,8 @@ EMAIL_USE_TLS = ${EMAIL_USE_TLS:-True} EOF fi -cd /srv/app/core/static/core && make +mkdir -p /srv/app/core/static/core/css || true +sassc -t compressed /srv/app/core/static/core/sass/estilos.sass /srv/app/core/static/core/css/estilos.min.css cd /srv/app || exit /usr/local/bin/python3 manage.py makemigrations --no-input /usr/local/bin/python3 manage.py migrate --no-input