From 4ed4e5c6c034dba21cfeb7e644662d3c2e970ca7 Mon Sep 17 00:00:00 2001 From: aazhou Date: Thu, 8 Jun 2023 16:36:37 +0800 Subject: [PATCH] 4 --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 899f3e9..dc655d4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,8 @@ FROM python:3.8-slim ENV PYTHONIOENCODING=utf-8 ENV TIME_ZONE Asia/Shanghai -RUN pip3 install --upgrade pip3 setuptools wheel +RUN python -m pip install --upgrade pip +RUN pip3 install --upgrade setuptools wheel RUN pip3 install -i https://mirrors.aliyun.com/pypi/simple/ binance binance_connector numpy requests schedule TA_Lib WORKDIR /opt/ COPY ["./", "/opt/"]