sergei/Dockerfile
2023-06-06 17:01:17 -04:00

16 lines
304 B
Docker

FROM python:3
# Install dependencies
RUN pip3 install python-dotenv
RUN pip3 install discord.py
RUN pip3 install pynacl
RUN pip3 install youtube_dl
RUN pip3 install git+https://github.com/Cupcakus/pafy
WORKDIR /usr/src/app
COPY . .
RUN apt update
RUN apt install -y ffmpeg
CMD ["python3", "main.py"]