mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-01-19 01:21:01 +08:00
41 lines
1.4 KiB
Docker
41 lines
1.4 KiB
Docker
FROM python:3.10
|
|
|
|
LABEL maintainer="foo@bar.com"
|
|
ARG TZ='Asia/Shanghai'
|
|
|
|
ARG CHATGPT_ON_WECHAT_VER
|
|
|
|
ENV BUILD_PREFIX=/app
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
wget \
|
|
curl \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& export BUILD_GITHUB_TAG=${CHATGPT_ON_WECHAT_VER:-`curl -sL "https://api.github.com/repos/zhayujie/chatgpt-on-wechat/releases/latest" | \
|
|
grep '"tag_name":' | \
|
|
sed -E 's/.*"([^"]+)".*/\1/'`} \
|
|
&& wget -t 3 -T 30 -nv -O chatgpt-on-wechat-${BUILD_GITHUB_TAG}.tar.gz \
|
|
https://github.com/zhayujie/chatgpt-on-wechat/archive/refs/tags/${BUILD_GITHUB_TAG}.tar.gz \
|
|
&& tar -xzf chatgpt-on-wechat-${BUILD_GITHUB_TAG}.tar.gz \
|
|
&& mv chatgpt-on-wechat-${BUILD_GITHUB_TAG} ${BUILD_PREFIX} \
|
|
&& rm chatgpt-on-wechat-${BUILD_GITHUB_TAG}.tar.gz \
|
|
&& cd ${BUILD_PREFIX} \
|
|
&& cp config-template.json ${BUILD_PREFIX}/config.json \
|
|
&& /usr/local/bin/python -m pip install --no-cache --upgrade pip \
|
|
&& pip install --no-cache -r requirements.txt \
|
|
&& pip install --no-cache -r requirements-optional.txt
|
|
|
|
WORKDIR ${BUILD_PREFIX}
|
|
|
|
ADD ./entrypoint.sh /entrypoint.sh
|
|
|
|
RUN chmod +x /entrypoint.sh \
|
|
&& groupadd -r noroot \
|
|
&& useradd -r -g noroot -s /bin/bash -d /home/noroot noroot \
|
|
&& chown -R noroot:noroot ${BUILD_PREFIX}
|
|
|
|
USER noroot
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|