Dockerfile.latest 1.0 KB

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