From 653f2d9c6dbeaf920984c8ebab68f9c9dab122c1 Mon Sep 17 00:00:00 2001 From: master Date: Tue, 30 May 2023 23:02:23 +0000 Subject: [PATCH] Update 'Dockerfile' --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) 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