Put personal pages into subdomains
This commit is contained in:
+3
-3
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user