From 782e8e14a6880ad283554d3131e58e7f4540c7ed Mon Sep 17 00:00:00 2001 From: scarzehd Date: Sun, 23 Nov 2025 18:21:06 -0500 Subject: [PATCH] Dockerfile changes --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index acc9f82..8175237 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,13 @@ FROM python:3.10 WORKDIR /usr/local/app -ENV DISCORD_BOT_TOKEN "" +ENV DISCORD_BOT_TOKEN="" COPY . . RUN pip install --no-cache-dir --upgrade pip RUN pip install --no-cache-dir -r requirements.txt -RUN echo $DISCORD_BOT_TOKEN > .env +RUN echo DISCORD_BOT_TOKEN=$DISCORD_BOT_TOKEN > .env CMD ["python3", "bot.py"] \ No newline at end of file