JellyfinDiscordBot/Dockerfile
2025-04-18 15:05:00 -07:00

16 lines
189 B
Docker

FROM python:3
RUN apk add ffmpeg
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN mv .env.example .env
CMD python bot.py