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

Remove not needed `apt-get update` in Dockerfile

There's no need to wait and waste the time and bandwidth to wait for `apt-get update` for `pip3 install` ;)
pull/2272/head
Peter Dave Hello 7 months ago committed by GitHub
parent 9e111a334b
commit a5dda7ae91
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -7,8 +7,7 @@
FROM python:3.12-slim-bullseye as build
WORKDIR /sherlock
RUN apt-get update \
pip3 install --no-cache-dir --upgrade pip
RUN pip3 install --no-cache-dir --upgrade pip
FROM python:3.12-slim-bullseye
WORKDIR /sherlock

Loading…
Cancel
Save