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
2021-08-06 15:18:53 +02:00

15 lines
349 B
Docker

FROM python:3.8.6-slim
COPY requirements.txt .
RUN pip install -r requirements.txt
RUN apt update
RUN apt install curl openjdk-11-jdk -y
RUN curl -sLo Lavalink.jar https://github.com/freyacodes/Lavalink/releases/download/3.3.2.5/Lavalink.jar
RUN apt remove curl
RUN apt autoremove
COPY README.md .
COPY src .
CMD [ "python", "-u", "./main.py" ]