v6d3music/Dockerfile

12 lines
316 B
Docker

# syntax=docker/dockerfile:1
FROM python:3.10
WORKDIR /v6
ENV v6root=/v6data
RUN apt-get update
RUN apt-get install -y libopus0 opus-tools ffmpeg
RUN apt-get install -y tor
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY v6d3music v6d3music
CMD ["python3", "-m", "v6d3music.run-bot"]