radiobot/Dockerfile

13 lines
186 B
Docker
Raw Normal View History

2022-03-23 18:52:10 -04:00
FROM python:3-bullseye
2022-03-22 20:25:39 -04:00
2022-03-23 18:57:01 -04:00
RUN apt-get update
RUN apt-get -yq install ffmpeg build-essential
2022-03-22 21:26:09 -04:00
2022-03-23 18:37:06 -04:00
RUN pip --no-cache-dir install \
2022-03-23 21:13:39 -04:00
discord.py[voice] \
2022-03-23 18:37:06 -04:00
pynacl
2022-03-22 21:26:09 -04:00
2022-03-23 18:37:06 -04:00
WORKDIR /app
2022-03-23 21:13:39 -04:00
COPY . /app