diff --git a/Dockerfile b/Dockerfile index f0ea489..bfc6d69 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,8 @@ FROM node:18-alpine as sass RUN NODE_OPTIONS=--dns-result-order=ipv4first npm install -g sass WORKDIR /build -COPY ./static/style ./style -RUN sass ./style:./style \ +COPY ./blueprints ./blueprints +RUN sass ./blueprints:./blueprints \ --no-source-map \ --style=compressed @@ -13,7 +13,7 @@ FROM python:3.11-slim WORKDIR /app COPY . . -COPY --from=sass /build/style/ ./static/style/ +COPY --from=sass /build/blueprints/ ./blueprints/ RUN pip install --no-cache-dir -r requirements.txt