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.

37 lines
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/sum4all/requirements.txt
  18. WORKDIR ${BUILD_PREFIX}
  19. ADD docker/entrypoint.sh /entrypoint.sh
  20. RUN chmod +x /entrypoint.sh \
  21. && mkdir -p /home/noroot \
  22. && groupadd -r noroot \
  23. && useradd -r -g noroot -s /bin/bash -d /home/noroot noroot \
  24. && chown -R noroot:noroot /home/noroot ${BUILD_PREFIX} /usr/local/lib
  25. USER noroot
  26. ENTRYPOINT ["/entrypoint.sh"]