mirror of
https://gitlab.com/simple-stock-bots/simple-telegram-stock-bot.git
synced 2025-07-24 23:21:24 +00:00
.gitignore
Dockerfile
IEX_Symbol.py
LICENSE
README.md
T_info.py
bot.py
cg_Crypto.py
commands
requirements.txt
symbol_router.py
10 lines
144 B
Docker
10 lines
144 B
Docker
FROM python:3.8-buster
|
|
|
|
|
|
|
|
COPY requirements.txt ./
|
|
RUN pip install --no-cache-dir -U -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
CMD [ "python", "./bot.py" ] |