oliver2023's picture
Duplicate from linhj07/chatgpt-on-wechat
0dc9888
raw
history blame contribute delete
392 Bytes
FROM zhayujie/chatgpt-on-wechat:alpine
LABEL maintainer="[email protected]"
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"]