Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/sherlock/src/commit/e3a4879fcd14c1fa39e4fff8a528582d8e599f9d/Dockerfile You should set ROOT_URL correctly, otherwise the web may not work correctly.
sherlock/Dockerfile

27 lines
598 B

FROM python:3.11-slim-bullseye as build
WORKDIR /wheels
COPY requirements.txt /opt/sherlock/
RUN apt-get update \
&& apt-get install -y build-essential \
&& pip3 wheel -r /opt/sherlock/requirements.txt
FROM python:3.11-slim-bullseye
WORKDIR /opt/sherlock
ARG VCS_REF
ARG VCS_URL="https://github.com/sherlock-project/sherlock"
LABEL org.label-schema.vcs-ref=$VCS_REF \
org.label-schema.vcs-url=$VCS_URL
COPY --from=build /wheels /wheels
COPY . /opt/sherlock/
RUN pip3 install --no-cache-dir . -f /wheels \
&& rm -rf /wheels
WORKDIR /opt/sherlock/sherlock
ENTRYPOINT ["sherlock"]