From 695da6df25bd8e93259c87f241c79ab32e039208 Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Wed, 28 Oct 2020 16:48:08 +0000 Subject: [PATCH] use standard distro mirrors --- Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 320d8b5..bc06068 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,12 +3,12 @@ FROM ubuntu@sha256:d050ed7278c16ff627e4a70d7d353f1a2ec74d8a0b66e5a865356d92f5f6d ENV DEBIAN_FRONTEND noninteractive -ARG UBUNTU_MIRROR=http://archive.ubuntu.com/ubuntu -RUN echo "deb $UBUNTU_MIRROR focal main universe restricted multiverse" > /etc/apt/sources.list.new && \ -echo "deb $UBUNTU_MIRROR focal-updates main universe restricted multiverse" >> /etc/apt/sources.list.new && \ -echo "deb $UBUNTU_MIRROR focal-security main universe restricted multiverse" >> /etc/apt/sources.list.new && \ -echo "deb $UBUNTU_MIRROR focal-backports main universe restricted multiverse" >> /etc/apt/sources.list.new && \ -mv /etc/apt/sources.list.new /etc/apt/sources.list +#ARG UBUNTU_MIRROR=http://archive.ubuntu.com/ubuntu +#RUN echo "deb $UBUNTU_MIRROR focal main universe restricted multiverse" > /etc/apt/sources.list.new && \ +#echo "deb $UBUNTU_MIRROR focal-updates main universe restricted multiverse" >> /etc/apt/sources.list.new && \ +#echo "deb $UBUNTU_MIRROR focal-security main universe restricted multiverse" >> /etc/apt/sources.list.new && \ +#echo "deb $UBUNTU_MIRROR focal-backports main universe restricted multiverse" >> /etc/apt/sources.list.new && \ +#mv /etc/apt/sources.list.new /etc/apt/sources.list COPY ./root /tmp/rootoverlay COPY ./run.sh /tmp/run.sh