From 8d066d3007b28a47fe8243ae02b7e7581c2dfebc Mon Sep 17 00:00:00 2001 From: Shoubhik Bose Date: Fri, 26 Mar 2021 12:38:49 -0400 Subject: [PATCH] fix: avoid short names (#5865) Signed-off-by: Shoubhik Bose --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 10a93635eab68..ffe9ea16fcf8b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -ARG BASE_IMAGE=ubuntu:20.10 +ARG BASE_IMAGE=docker.io/library/ubuntu:20.10 #################################################################################################### # Builder image # Initial stage which pulls prepares build dependencies and CLI tooling we need for our final image # Also used as the image in CI jobs so needs all dependencies #################################################################################################### -FROM golang:1.16.2 as builder +FROM docker.io/library/golang:1.16.2 as builder RUN echo 'deb http://deb.debian.org/debian buster-backports main' >> /etc/apt/sources.list @@ -86,7 +86,7 @@ WORKDIR /home/argocd #################################################################################################### # Argo CD UI stage #################################################################################################### -FROM node:12.18.4 as argocd-ui +FROM docker.io/library/node:12.18.4 as argocd-ui WORKDIR /src ADD ["ui/package.json", "ui/yarn.lock", "./"]