radiobot/Dockerfile

15 lines
215 B
Text
Raw Normal View History

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