radiobot/Dockerfile
2022-03-28 10:52:08 -04:00

15 lines
215 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 \
httplib2 \
urllib3
WORKDIR /app
COPY . /app