diff --git a/Dockerfile b/Dockerfile index 4c3804c..6f6aaad 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,5 @@ -FROM python:3.8-slim-buster +FROM python:3.10 WORKDIR /app - -COPY requirements.txt requirements.txt -RUN pip3 install -m requirements.txt - -COPY . . - -CMD python3 bot.py +COPY . /app/ +RUN pip install -r requirements.txt +CMD ["python3", "bot.py"]