diff --git a/test/integration/docker/deployer/Dockerfile b/test/integration/docker/deployer/Dockerfile index 22556cc2..ccd1de39 100644 --- a/test/integration/docker/deployer/Dockerfile +++ b/test/integration/docker/deployer/Dockerfile @@ -2,7 +2,7 @@ FROM ruby:3.2 WORKDIR /app -RUN apt-get update && apt-get install -y ca-certificates openssh-client curl gnupg docker.io +RUN apt-get update --fix-missing && apt-get install -y ca-certificates openssh-client curl gnupg docker.io RUN install -m 0755 -d /etc/apt/keyrings RUN curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg @@ -12,7 +12,7 @@ RUN echo \ "$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \ tee /etc/apt/sources.list.d/docker.list > /dev/null -RUN apt-get update && apt-get install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin +RUN apt-get update --fix-missing && apt-get install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin COPY boot.sh . COPY app/ . diff --git a/test/integration/docker/shared/Dockerfile b/test/integration/docker/shared/Dockerfile index dae69053..bc0d8e84 100644 --- a/test/integration/docker/shared/Dockerfile +++ b/test/integration/docker/shared/Dockerfile @@ -2,7 +2,7 @@ FROM ubuntu:22.10 WORKDIR /work -RUN apt-get update && apt-get -y install openssh-client openssl +RUN apt-get update --fix-missing && apt-get -y install openssh-client openssl RUN mkdir ssh && \ ssh-keygen -t rsa -f ssh/id_rsa -N "" diff --git a/test/integration/docker/vm/Dockerfile b/test/integration/docker/vm/Dockerfile index 99f881fa..f481023c 100644 --- a/test/integration/docker/vm/Dockerfile +++ b/test/integration/docker/vm/Dockerfile @@ -2,7 +2,7 @@ FROM ubuntu:22.10 WORKDIR /work -RUN apt-get update && apt-get -y install openssh-client openssh-server docker.io +RUN apt-get update --fix-missing && apt-get -y install openssh-client openssh-server docker.io RUN mkdir /root/.ssh && ln -s /shared/ssh/id_rsa.pub /root/.ssh/authorized_keys RUN mkdir -p /etc/docker/certs.d/registry:4443 && ln -s /shared/certs/domain.crt /etc/docker/certs.d/registry:4443/ca.crt