mirror of
https://github.com/azlux/botamusique.git
synced 2024-11-21 15:07:55 +00:00
26 lines
822 B
Docker
26 lines
822 B
Docker
ARG ARCH=
|
|
FROM python:3.11-slim-bullseye AS python-builder
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
WORKDIR /botamusique
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install --no-install-recommends -y gcc g++ ffmpeg libjpeg-dev libmagic-dev opus-tools zlib1g-dev \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
COPY . /botamusique
|
|
RUN python3 -m venv venv \
|
|
&& venv/bin/pip install wheel \
|
|
&& venv/bin/pip install -r requirements.txt
|
|
|
|
FROM python:3.11-slim-bullseye
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
EXPOSE 8181
|
|
RUN apt update && \
|
|
apt install --no-install-recommends -y opus-tools ffmpeg libmagic-dev curl tar && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
COPY --from=python-builder /botamusique /botamusique
|
|
WORKDIR /botamusique
|
|
RUN chmod +x entrypoint.sh
|
|
|
|
ENTRYPOINT [ "/botamusique/entrypoint.sh" ]
|
|
CMD ["venv/bin/python", "mumbleBot.py"]
|