1
0
mirror of https://gitlab.com/simple-stock-bots/simple-telegram-stock-bot.git synced 2025-07-29 01:21:35 +00:00
Files
.gitignore
.gitlab-ci.yml
Dockerfile
IEX_Symbol.py
LICENSE
README.md
Symbol.py
T_info.py
bot.py
cg_Crypto.py
requirements.txt
search_index.pickle
searchindexer.ipynb
symbol_router.py
Simple-Telegram-Stock-Bot/Dockerfile
2021-03-27 17:17:16 -07:00

10 lines
144 B
Docker

FROM python:3.9-buster
COPY requirements.txt ./
RUN pip install --no-cache-dir -U -r requirements.txt
COPY . .
CMD [ "python", "./bot.py" ]