Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/GPT3Discord/commit/c10a2f0237a485a4cc22a9b41969d9d6cd4bd976?style=split&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
3 additions and
1 deletions
@ -4,6 +4,7 @@ ARG PY_VERSION=3.9
FROM python:${PY_VERSION} as base
FROM python:${PY_VERSION} as base
FROM base as builder
FROM base as builder
ARG PY_VERSION
ARG PY_VERSION
COPY . .
RUN mkdir /install /src
RUN mkdir /install /src
WORKDIR /install
WORKDIR /install
@ -23,6 +24,7 @@ RUN pip install --target="/install" /src
# Copy minimal to main image (to keep as small as possible)
# Copy minimal to main image (to keep as small as possible)
FROM python:${PY_VERSION}-slim
FROM python:${PY_VERSION}-slim
ARG PY_VERSION
ARG PY_VERSION
COPY . .
COPY --from= builder /install /usr/local/lib/python${ PY_VERSION } /site-packages
COPY --from= builder /install /usr/local/lib/python${ PY_VERSION } /site-packages
RUN mkdir -p /opt/gpt3discord/etc
RUN mkdir -p /opt/gpt3discord/etc
COPY gpt3discord.py /opt/gpt3discord/bin/
COPY gpt3discord.py /opt/gpt3discord/bin/
@ -31,7 +31,7 @@ from services.environment_service import EnvService
from models . openai_model import Model
from models . openai_model import Model
__version__ = " 9.0. 1 "
__version__ = " 9.0. 2 "
PID_FILE = Path ( " bot.pid " )
PID_FILE = Path ( " bot.pid " )