From 2d34869adf1e900a95489bf972a6373320c52f7c Mon Sep 17 00:00:00 2001 From: aazhou Date: Thu, 8 Jun 2023 16:43:17 +0800 Subject: [PATCH] 5 --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index dc655d4..00dbf3b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,9 @@ FROM python:3.8-slim ENV PYTHONIOENCODING=utf-8 ENV TIME_ZONE Asia/Shanghai +RUN apt-get update && \ + apt-get -y install gcc mono-mcs && \ + rm -rf /var/lib/apt/lists/* 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