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
.devcontainer
.vscode
.gitignore
.gitlab-ci.yml
Dockerfile
IEX_Symbol.py
LICENSE
README.md
Symbol.py
T_info.py
bot.py
cg_Crypto.py
requirements.txt
symbol_router.py
Simple-Telegram-Stock-Bot/Dockerfile
2021-11-06 04:27:27 +00:00

15 lines
229 B
Docker

FROM python:3.9-buster AS builder
COPY requirements.txt /requirements.txt
RUN pip install --user -r requirements.txt
FROM python:3.9-slim
COPY --from=builder /root/.local /root/.local
COPY . .
CMD [ "python", "./bot.py" ]