Skip to content

Instantly share code, notes, and snippets.

@satellitex
Last active January 28, 2023 21:21
Show Gist options
  • Save satellitex/271736aa762e829846624b7ffe45d7a4 to your computer and use it in GitHub Desktop.
Save satellitex/271736aa762e829846624b7ffe45d7a4 to your computer and use it in GitHub Desktop.
`satellitex/python-bot-env` の中身 TaLib と MognoDB 使うために追加インストール
FROM fnndsc/python-poetry
RUN apt-get update && apt-get install -y \
wget \
build-essential \
python3-openssl
RUN wget http://prdownloads.sourceforge.net/ta-lib/ta-lib-0.4.0-src.tar.gz && \
tar -xvzf ta-lib-0.4.0-src.tar.gz && \
cd ta-lib/ && \
./configure --prefix=/usr && \
make && \
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment