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-07 03:44:40 +02:00

18 lines
453 B
Docker

FROM python:3.8.11-slim
COPY requirements.txt .
RUN pip install -r requirements.txt
RUN mkdir -p /usr/share/man/man1 && \
apt update -y && \
apt install --no-install-recommends -y \
curl \
openjdk-11-jdk && \
curl -sLo Lavalink.jar https://github.com/freyacodes/Lavalink/releases/download/3.3.2.5/Lavalink.jar && \
apt remove curl -y
COPY README.md .
COPY src .
# CMD ["python", "-u", "./main.py"]
CMD ["./start.sh"]