radiobot/Dockerfile

13 lines
186 B
Docker

FROM python:3-bullseye
RUN apt-get update
RUN apt-get -yq install ffmpeg build-essential
RUN pip --no-cache-dir install \
discord.py[voice] \
pynacl
WORKDIR /app
COPY . /app