diff --git a/app/Dockerfile b/app/Dockerfile index 98ed818..33b0ffd 100644 --- a/app/Dockerfile +++ b/app/Dockerfile @@ -1,5 +1,6 @@ FROM python:3.9.6-buster WORKDIR /usr/src/app +COPY ./requirements.txt /usr/src/app/ RUN pip install --upgrade pip -RUN pip install -r ./requirements.txt +RUN pip install -r requirements.txt CMD python3 -u ./bot.py \ No newline at end of file