From 0c4d2f8af7c72e17cfac3631e5e03587b8c46006 Mon Sep 17 00:00:00 2001 From: Anson Date: Sun, 9 Jun 2019 12:10:36 -0700 Subject: [PATCH] removed testing code --- Dockerfile | 4 ++-- bot.py | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4c95c94..cee81ca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ -FROM python:3.6-slim +FROM python:3.7-slim COPY requirements.txt ./ RUN pip install --no-cache-dir -r requirements.txt COPY . . -CMD [ "python", "./stockBot.py" ] \ No newline at end of file +CMD [ "python", "./bot.py" ] diff --git a/bot.py b/bot.py index 0b30eb7..277b56c 100644 --- a/bot.py +++ b/bot.py @@ -1,5 +1,4 @@ import discord -import cred from functions import * client = discord.Client()