File size: 114 Bytes
24b4e1c
 
 
bca145b
 
1
2
3
4
5
FROM python:3.11
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "bot.py"]