radiobot/Dockerfile
2022-03-24 00:52:10 +02:00

14 lines
205 B
Docker

FROM python:3-bullseye
RUN apt update
RUN apt install ffmpeg build-essential
RUN pip --no-cache-dir install \
discord.py \
pynacl
WORKDIR /app
ENV CONFIG_FILE="./config/config.ini"
COPY . /app