JellyfinDiscordBot/Dockerfile
Jonathan Jara 4ea3d14c2d fix?
2025-04-18 15:59:36 -07:00

14 lines
201 B
Docker

FROM python:3.12.10-alpine
RUN apk add ffmpeg libopusenc opus-dev opus
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD python bot.py