1
0
mirror of https://gitlab.com/simple-stock-bots/simple-telegram-stock-bot.git synced 2025-07-22 22:21:33 +00:00

Gave website its own repo

This commit is contained in:
2019-04-02 22:49:18 -07:00
parent 2e4d6da26d
commit d7d0962eea
12 changed files with 0 additions and 341 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM python:3.7-slim
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "./stockBot.py" ]