diff --git a/Dockerfile b/Dockerfile index 61e6cf6..e5d5883 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,10 @@ FROM python:3.9-slim WORKDIR /app -COPY . /app +COPY requirements.txt /app RUN pip install --no-cache-dir --trusted-host pypi.python.org -r /app/requirements.txt +COPY . /app + CMD ["python", "-u", "SlashBot.py"] \ No newline at end of file