So i uploaded my bot to cloud using docker:
FROM python:3.11.4-slim-buster
# Install FFmpeg and Opus
RUN apt-get update && apt-get install -y libopus-dev
WORKDIR /kexobot
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
EXPOSE 8000
EXPOSE 2333
CMD ["python", "KexoBOT.py"]
And then requirements
py-cord
dnspython
pymongo
PyNaCl
async-timeout
asyncio
nest-asyncio
requests
lxml
imgflip.py
bs4
asyncpraw
wavelink
And i have no idea what's causing this, bot works locally normally, but when i upload i get this error:
Traceback (most recent call last):
File "/kexobot/KexoBOT.py", line 16, in <module>
from discord import option
ImportError: cannot import name 'option' from 'discord' (/usr/local/lib/python3.11/site-packages/discord/__init__.py)```

