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()