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.
|
- FROM zhayujie/chatgpt-on-wechat:alpine
-
- LABEL maintainer="foo@bar.com"
- ARG TZ='Asia/Shanghai'
-
- USER root
-
- RUN apk add --no-cache \
- ffmpeg \
- espeak \
- && pip install --no-cache \
- baidu-aip \
- chardet \
- SpeechRecognition
-
- # replace entrypoint
- ADD ./entrypoint.sh /entrypoint.sh
-
- RUN chmod +x /entrypoint.sh
-
- USER noroot
-
- ENTRYPOINT ["/entrypoint.sh"]
|