From d7bdbc821e96d34f50e14abb2486f158050c7e85 Mon Sep 17 00:00:00 2001 From: Sweetbread Date: Sat, 17 Jan 2026 22:34:01 +0300 Subject: [PATCH] fixup! Put personal pages into subdomains --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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