We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc3535f commit f687821Copy full SHA for f687821
Dockerfile
@@ -34,10 +34,10 @@ RUN if [ "$BUILD_CN" = "true" ]; then \
34
# install data-flow then
35
COPY . .
36
37
+ARG PIP_INDEX_URL=https://pypi.tuna.tsinghua.edu.cn/simple/
38
# Install deps
-# RUN pip install --no-cache-dir --use-deprecated=legacy-resolver -r docker/dataflow_requirements.txt
39
RUN if [ "$BUILD_CN" = "true" ]; then \
40
- pip install --no-cache-dir -r docker/dataflow_requirements.txt -i https://mirrors.aliyun.com/pypi/simple/; \
+ pip install --no-cache-dir -r docker/dataflow_requirements.txt -i ${PIP_INDEX_URL}; \
41
else \
42
pip install --no-cache-dir -r docker/dataflow_requirements.txt; \
43
fi
0 commit comments