radiobot/Dockerfile
2022-03-24 00:37:06 +02:00

24 lines
404 B
Docker

FROM python:3
RUN apk add --no-cache ffmpeg \
&& apk add --no-cache --virtual .build-deps \
g++ \
gcc \
libgcc \
make \
autoconf \
libtool \
automake \
python3 \
&& npm install \
&& apk del .build-deps
RUN pip --no-cache-dir install \
discord.py
pynacl
WORKDIR /app
ENV CONFIG_FILE="./config/config.ini"
COPY . /app