File size: 117 Bytes
3f8c4df
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
FROM python:3.10.6-slim-buster

WORKDIR .
COPY . .

RUN pip3 install -r requirements.txt

CMD ["python3", "bot.py"]