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

Install Docker packages with --no-cache-dir

Pip has a "--no-cache-dir" argument to disable caching, eliminating the
need of deleting the cache with a hard-coded path.
pull/1479/head
Anthony Suárez 3 years ago
parent 0f62137b49
commit d0a1549467

@ -19,9 +19,8 @@ LABEL org.label-schema.vcs-ref=$VCS_REF \
COPY --from=build /wheels /wheels
COPY . /opt/sherlock/
RUN pip3 install -r requirements.txt -f /wheels \
&& rm -rf /wheels \
&& rm -rf /root/.cache/pip/*
RUN pip3 install --no-cache-dir -r requirements.txt -f /wheels \
&& rm -rf /wheels
WORKDIR /opt/sherlock/sherlock

Loading…
Cancel
Save