From 880044bb8934c4d926d0ef4f93c6e492a8ebe0ac Mon Sep 17 00:00:00 2001 From: kedikala Date: Mon, 8 Aug 2022 11:34:33 -0400 Subject: [PATCH] Updated dockerfile to fix build issues --- 2_Strategies/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2_Strategies/Dockerfile b/2_Strategies/Dockerfile index 347151a..b7ff23c 100644 --- a/2_Strategies/Dockerfile +++ b/2_Strategies/Dockerfile @@ -10,7 +10,7 @@ RUN apt-get -y update && apt-get install -y --no-install-recommends \ RUN wget https://sourceforge.net/projects/ta-lib/files/ta-lib/0.4.0/ta-lib-0.4.0-src.tar.gz && tar -xzf ta-lib-0.4.0-src.tar.gz && cd ta-lib/ && ./configure --prefix=/usr && make && make install && cd ../ && rm -rf ta-lib && rm ta-lib-0.4.0-src.tar.gz # Install all of the packages -RUN wget https://bootstrap.pypa.io/get-pip.py && python get-pip.py +# RUN wget https://bootstrap.pypa.io/get-pip.py && python get-pip.py RUN pip install numpy RUN pip install scipy RUN pip install scikit-learn @@ -32,4 +32,4 @@ ENV PATH="/opt/program:${PATH}" # Set up the program in the image COPY model /opt/program -WORKDIR /opt/program \ No newline at end of file +WORKDIR /opt/program