diff --git a/Dockerfile b/Dockerfile index 1a13c9d..b43ed65 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,9 +5,7 @@ ARG PIPMIRROR=https://pypi.org/simple ENV sapic_isrun=true COPY requirements /requirements RUN pip install --timeout 30 --index $PIPMIRROR --user --no-cache-dir --no-warn-script-location -r /requirements/all.txt && \ - ln -sf /root/.local/bin/flask /root/.local/bin/gunicorn /bin/ && \ - ln -sf $(which python) /python && \ - sed -i "s#$(which python)#/python#" /bin/gunicorn + ln -sf /root/.local/bin/flask /root/.local/bin/gunicorn /bin/ WORKDIR /picbed COPY src /picbed EXPOSE 9514 diff --git a/docs/changelog.rst b/docs/changelog.rst index 2d9cd1d..69f0534 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,6 +4,30 @@ 更新日志 ========= +v1.16.4 +-------- + +Released in 2025-2-8 + +- 修复 dockerfile gunicorn + +v1.16.3 +-------- + +Released in 2025-2-8 + +- 更新依赖版本 +- 修复 token 获取 IP 方式 +- 支持最低 python 3.9 + +v1.16.2 +-------- + +Released in 2023-1-10 + +- 修复:管理员控制台安装/升级(其他/本地)第三方包,提交按钮无效问题 +- 修复:bleach版本升级参数异常 + v1.16.1 -------- diff --git a/src/version.py b/src/version.py index 6cc7415..67f7644 100644 --- a/src/version.py +++ b/src/version.py @@ -1 +1 @@ -__version__ = "1.16.3" +__version__ = "1.16.4"