You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
508 B

  1. FROM python:3-alpine
  2. ARG VERSION=7.1
  3. WORKDIR /app
  4. RUN apk add --no-cache git ffmpeg-dev zlib-dev jpeg-dev gcc musl-dev
  5. RUN git clone --recurse-submodules https://github.com/azlux/botamusique.git . && git checkout $VERSION
  6. RUN python3 -m venv venv
  7. RUN venv/bin/pip install wheel opuslib protobuf
  8. RUN venv/bin/pip install -r requirements.txt
  9. FROM python:3-alpine
  10. WORKDIR /app
  11. COPY --from=0 /app .
  12. RUN apk add --no-cache gcc opus-dev libmagic ffmpeg
  13. ENTRYPOINT ["/app/venv/bin/python", "/app/mumbleBot.py"]