radiobot/Dockerfile

14 lines
205 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:52:10 -04:00
RUN apt update
RUN apt 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 18:39:34 -04:00
discord.py \
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
ENV CONFIG_FILE="./config/config.ini"
2022-03-22 20:25:39 -04:00
2022-03-23 18:37:06 -04:00
COPY . /app