Skip to content

Commit 1cd2682

Browse files
committed
Updated dotnet-runtime-9.0 installation to temporarily allow unauthenticated repository
Due to recent (2026-02-01) changes in APT treating SHA1 repositories as insecure, the image needs to pull dotnet-runtime-9.0 insecurely to build successfully. This is a temporary fix and should be reverted AS SOON AS POSSIBLE once a secure key signature is available for the repository.
1 parent f1112f2 commit 1cd2682

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

relink-1.0.0/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,9 @@ COPY --from=build packages-microsoft-prod.deb /tmp/packages-microsoft-prod.deb
5353
# Install Java runtime (required for xiSEARCH and xiFDR) Dotnet runtime, MPFR, and GMP (required for Scout)
5454
RUN dpkg -i /tmp/packages-microsoft-prod.deb && \
5555
rm /tmp/packages-microsoft-prod.deb && \
56-
apt-get update && apt-get install -y --no-install-recommends \
57-
dotnet-runtime-9.0 \
56+
apt-get --allow-insecure-repositories --allow-unauthenticated update && apt-get install --allow-unauthenticated -y --no-install-recommends \
57+
dotnet-runtime-9.0 && \
58+
apt-get install -y --no-install-recommends \
5859
libmpfr6 \
5960
libgmp10 \
6061
openjdk-21-jre \

0 commit comments

Comments
 (0)