Verified Commit 351d06a4 authored by Adrian DC's avatar Adrian DC
Browse files

build(containers): migrate Docker installations to 'debian' repositories



Signed-off-by: default avatarAdrian DC <radian.dc@gmail.com>
parent 24d9d790
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -9,8 +9,8 @@ RUN apt-get update -qq \
# Install docker dependencies
RUN apt-get update -qq \
 && apt-get install -qq -y software-properties-common \
 && curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - \
 && add-apt-repository -y "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(grep '^VERSION_CODENAME=' /etc/os-release | cut -d'=' -f2) stable" \
 && curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add - \
 && add-apt-repository -y "deb [arch=amd64] https://download.docker.com/linux/debian $(grep '^VERSION_CODENAME=' /etc/os-release | cut -d'=' -f2) stable" \
 && apt-get update -qq \
 && apt-get install -qq -y docker.io \
 && rm -rf /var/lib/apt/lists/*
+2 −2
Original line number Diff line number Diff line
@@ -9,8 +9,8 @@ RUN apt-get update -qq \
# Install docker dependencies
RUN apt-get update -qq \
 && apt-get install -qq -y software-properties-common \
 && curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - \
 && add-apt-repository -y "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(grep '^VERSION_CODENAME=' /etc/os-release | cut -d'=' -f2) stable" \
 && curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add - \
 && add-apt-repository -y "deb [arch=amd64] https://download.docker.com/linux/debian $(grep '^VERSION_CODENAME=' /etc/os-release | cut -d'=' -f2) stable" \
 && apt-get update -qq \
 && apt-get install -qq -y docker.io \
 && rm -rf /var/lib/apt/lists/*