We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59ca8b5 commit 16257d0Copy full SHA for 16257d0
scripts/docker/debian10-deb.Dockerfile
@@ -3,6 +3,12 @@ FROM debian:10
3
ARG artifact_url=""
4
ADD ${artifact_url} /tmp
5
ADD node_modules /usr/share/mongodb-crypt-library-version/node_modules
6
+
7
+# Update sources.list to use archived repositories for Debian 10 (buster)
8
+RUN sed -i 's|http://deb.debian.org/debian|http://archive.debian.org/debian|g' /etc/apt/sources.list && \
9
+ sed -i '/security.debian.org/d' /etc/apt/sources.list && \
10
+ echo 'Acquire::Check-Valid-Until "false";' > /etc/apt/apt.conf.d/99no-check-valid-until
11
12
RUN apt-get update
13
RUN apt-get install -y man-db
14
RUN apt-get install -y /tmp/*mongosh*.deb
0 commit comments