dockerfile.patch (536B)
1 diff --git a/Dockerfile b/Dockerfile 2 index 82b0c92c5..88ab077c7 100644 3 --- a/Dockerfile 4 +++ b/Dockerfile 5 @@ -6,7 +6,7 @@ RUN mkdir /app /app/static /app/images 6 7 WORKDIR /app 8 9 -RUN apt-get update && apt-get install -y gettext libgettextpo-dev tidy && apt-get clean 10 +RUN apt-get update && apt-get install -y gettext libgettextpo-dev tidy libsass-dev && apt-get clean 11 12 -COPY requirements.txt /app/ 13 -RUN pip install -r requirements.txt --no-cache-dir 14 +COPY . /app 15 +RUN env SYSTEM_SASS="true" pip install -r requirements.txt --no-cache-dir