Skip to content

Commit

Permalink
Updated dockerfile to fix build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
kedikala authored Aug 8, 2022
1 parent b9f85f0 commit 880044b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 2_Strategies/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -32,4 +32,4 @@ ENV PATH="/opt/program:${PATH}"

# Set up the program in the image
COPY model /opt/program
WORKDIR /opt/program
WORKDIR /opt/program

0 comments on commit 880044b

Please sign in to comment.