Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

38 lignes
1.1KB

  1. FROM python:3.10-slim-bullseye
  2. LABEL maintainer="foo@bar.com"
  3. ARG TZ='Asia/Shanghai'
  4. ARG CHATGPT_ON_WECHAT_VER
  5. RUN echo /etc/apt/sources.list
  6. # RUN sed -i 's/deb.debian.org/mirrors.tuna.tsinghua.edu.cn/g' /etc/apt/sources.list
  7. ENV BUILD_PREFIX=/app
  8. ADD . ${BUILD_PREFIX}
  9. RUN apt-get update \
  10. &&apt-get install -y --no-install-recommends bash ffmpeg espeak libavcodec-extra\
  11. && cd ${BUILD_PREFIX} \
  12. && cp config-template.json config.json \
  13. && /usr/local/bin/python -m pip install --no-cache --upgrade pip \
  14. && pip install --no-cache -r requirements.txt \
  15. && pip install --no-cache -r requirements-optional.txt \
  16. && pip install azure-cognitiveservices-speech \
  17. && pip install --no-cache -r ./plugins/file4upload/requirements.txt \
  18. && pip install --no-cache -r ./plugins/healthai/requirements.txt
  19. WORKDIR ${BUILD_PREFIX}
  20. ADD docker/entrypoint.sh /entrypoint.sh
  21. RUN chmod +x /entrypoint.sh \
  22. && mkdir -p /home/noroot \
  23. && groupadd -r noroot \
  24. && useradd -r -g noroot -s /bin/bash -d /home/noroot noroot \
  25. && chown -R noroot:noroot /home/noroot ${BUILD_PREFIX} /usr/local/lib
  26. USER noroot
  27. ENTRYPOINT ["/entrypoint.sh"]