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-15 13:04:38 +02:00

18 lines
369 B
Docker

FROM python:3.8.11-slim
ENV DOCKER_KASSOUBOT=True
COPY requirements.txt .
RUN apt update && \
apt install git -y && \
pip install -r requirements.txt && \
git submodule update --force --recursive --init --remote && \
apt purge git -y
COPY README.md .
WORKDIR /opt
COPY src .
COPY /src/lavalink/README.md lavalink/
CMD ["python", "-u", "./main.py"]