From bde2d35634afe00009c482bd45ea52e590ebd61b Mon Sep 17 00:00:00 2001 From: Jonathan Jara Date: Fri, 18 Apr 2025 16:20:43 -0700 Subject: [PATCH] fix? --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b8f8399..a786628 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ RUN pip install --no-cache-dir -r requirements.txt COPY . . -RUN python -c "import discord.opus as opus; opus.load_opus(/usr/lib/libopus.so.0.10.1); print('✅ Opus loaded:', opus.is_loaded())" +RUN python -c "import discord.opus as opus; opus.load_opus('/usr/lib/libopus.so.0.10.1'); print('✅ Opus loaded:', opus.is_loaded())" CMD python bot.py