From a8858a711f29ae3f946c39abcd1d7538db8d6363 Mon Sep 17 00:00:00 2001 From: Sweetbread Date: Wed, 6 Aug 2025 20:35:06 +0300 Subject: [PATCH] fixup! ci: add docker-build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b3c8b95..8edf445 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM python:3.11-slim RUN apt-get update && apt-get install -y curl && \ curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \ apt-get install -y nodejs && \ - npm install -g sass && \ + NODE_OPTIONS=--dns-result-order=ipv4first npm install -g sass && \ apt-get clean && rm -rf /var/lib/apt/lists/* WORKDIR /app