|
|
@@ -0,0 +1,40 @@
|
|
|
+FROM python:3.7.9
|
|
|
+
|
|
|
+LABEL maintainer="foo@bar.com"
|
|
|
+ARG TZ='Asia/Shanghai'
|
|
|
+
|
|
|
+ARG CHATGPT_ON_WECHAT_VER=1.0.0
|
|
|
+
|
|
|
+ENV BUILD_PREFIX=/app \
|
|
|
+ BUILD_OPEN_AI_API_KEY='YOUR OPEN AI KEY HERE'
|
|
|
+
|
|
|
+RUN apt-get update && \
|
|
|
+ apt-get install -y --no-install-recommends \
|
|
|
+ wget \
|
|
|
+ curl && \
|
|
|
+ rm -rf /var/lib/apt/lists/*
|
|
|
+
|
|
|
+RUN wget -t 3 -T 30 -nv -O chatgpt-on-wechat-${CHATGPT_ON_WECHAT_VER}.tar.gz \
|
|
|
+ https://github.com/zhayujie/chatgpt-on-wechat/archive/refs/tags/${CHATGPT_ON_WECHAT_VER}.tar.gz \
|
|
|
+ && tar -xzf chatgpt-on-wechat-${CHATGPT_ON_WECHAT_VER}.tar.gz \
|
|
|
+ && mv chatgpt-on-wechat-${CHATGPT_ON_WECHAT_VER} ${BUILD_PREFIX} \
|
|
|
+ && rm chatgpt-on-wechat-${CHATGPT_ON_WECHAT_VER}.tar.gz
|
|
|
+
|
|
|
+WORKDIR ${BUILD_PREFIX}
|
|
|
+
|
|
|
+RUN cd ${BUILD_PREFIX} \
|
|
|
+ && cp config-template.json ${BUILD_PREFIX}/config.json \
|
|
|
+ && sed -i "2s/YOUR API KEY/${BUILD_OPEN_AI_API_KEY}/" ${BUILD_PREFIX}/config.json \
|
|
|
+ && cat ${BUILD_PREFIX}/config.json
|
|
|
+
|
|
|
+RUN /usr/local/bin/python -m pip install --upgrade pip \
|
|
|
+ && pip install itchat-uos==1.5.0.dev0 \
|
|
|
+ && pip install --upgrade openai
|
|
|
+
|
|
|
+RUN groupadd -r noroot \
|
|
|
+ && useradd -r -g noroot noroot \
|
|
|
+ && chown -R noroot:noroot ${BUILD_PREFIX}
|
|
|
+
|
|
|
+USER noroot
|
|
|
+
|
|
|
+CMD ["python","app.py"]
|