This repository has been archived on 2022-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
KassouBot/Dockerfile

15 lines
252 B
Docker
Raw Normal View History

2021-03-25 10:19:08 +01:00
FROM fredboat/lavalink:master
2021-03-17 21:36:41 +01:00
FROM python:3.8.6-slim
2021-03-17 20:40:11 +01:00
COPY requirements.txt .
RUN pip install -r requirements.txt
RUN apt update && \
apt install -y --no-install-recommends ffmpeg
2021-05-13 09:23:49 +02:00
COPY README.md .
2021-03-17 20:40:11 +01:00
COPY src .
CMD [ "python", "-u", "./main.py" ]