Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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"]