fix: restore Douyin login page runtime proxy

This commit is contained in:
Rixuan Shao
2026-07-11 21:32:09 +08:00
parent 472b3e8304
commit a4657d3d65
4 changed files with 36 additions and 0 deletions
+9
View File
@@ -49,6 +49,15 @@ RUN sed -i 's/archive.ubuntu.com/mirrors.aliyun.com/g' /etc/apt/sources.list \
&& node --version \
&& rm -rf /var/lib/apt/lists/*
# Build proxies must never leak into the runtime container. Compose injects
# service-addressable runtime proxies explicitly.
ENV HTTP_PROXY= \
HTTPS_PROXY= \
ALL_PROXY= \
http_proxy= \
https_proxy= \
all_proxy=
COPY . .
CMD ["python", "main.py", "--doTask"]