diff --git a/Dockerfile b/Dockerfile index 92be370..1f71265 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,8 @@ ARG BUILDPLATFORM="linux/amd64" ARG TARGETPLATFORM="linux/amd64" FROM --platform=$BUILDPLATFORM python:alpine AS base +ENV http_proxy http://proxy-chain.xxx.com:911/ +ENV https_proxy http://proxy-chain.xxx.com:912/ WORKDIR /app COPY requirements.txt . RUN pip3 install --default-timeout=100 -r requirements.txt