Skip to content

Commit 92f0ff6

Browse files
authored
chore: add fix-missing to apt update in docker (ietf-tools#3796)
1 parent 45df4f6 commit 92f0ff6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

dev/tests/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/d
1515
$(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
1616

1717
# Install the packages we need
18-
RUN apt-get update
18+
RUN apt-get update --fix-missing
1919
RUN apt-get install -qy \
2020
apache2-utils \
2121
apt-file \

docker/app.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /
1818
RUN echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian \
1919
$(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
2020

21-
RUN apt-get update
21+
RUN apt-get update --fix-missing
2222

2323
# apt-get upgrade is normally not a good idea, but this is a dev container
2424
RUN apt-get -qy upgrade

0 commit comments

Comments
 (0)