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.

25 lines
441B

  1. FROM zhayujie/chatgpt-on-wechat:debian
  2. LABEL maintainer="foo@bar.com"
  3. ARG TZ='Asia/Shanghai'
  4. USER root
  5. RUN apt-get update \
  6. && apt-get install -y --no-install-recommends \
  7. ffmpeg \
  8. espeak \
  9. && pip install --no-cache \
  10. baidu-aip \
  11. chardet \
  12. SpeechRecognition
  13. # replace entrypoint
  14. ADD ./entrypoint.sh /entrypoint.sh
  15. RUN chmod +x /entrypoint.sh
  16. USER noroot
  17. ENTRYPOINT ["/entrypoint.sh"]