File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -40,14 +40,14 @@ RUN apt-get update && \
4040
4141# Install docker CLI
4242RUN apt-get install -m 0755 -d /etc/apt/keyrings && \
43- curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor - o /etc/apt/keyrings/docker.gpg && \
44- chmod a+r /etc/apt/keyrings/docker.gpg && \
43+ curl -fsSL https://download.docker.com/linux/ubuntu/gpg - o /etc/apt/keyrings/docker.asc && \
44+ chmod a+r /etc/apt/keyrings/docker.asc && \
4545 echo \
46- "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg ] https://download.docker.com/linux/ubuntu \
47- $(. /etc/os-release && echo " $VERSION_CODENAME") stable" | \
46+ "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc ] https://download.docker.com/linux/ubuntu \
47+ $(. /etc/os-release && echo " ${UBUNTU_CODENAME:-$ VERSION_CODENAME} ") stable" | \
4848 tee /etc/apt/sources.list.d/docker.list > /dev/null && \
4949 apt-get update && \
50- apt-get install -y docker-ce-cli && \
50+ apt-get install -y docker-ce-cli docker-buildx-plugin docker-compose-plugin && \
5151 apt-get clean && \
5252 rm -rf /var/lib/apt/lists/*
5353
You can’t perform that action at this time.
0 commit comments