Skip to content

Commit

Permalink
fix: avoid short names in Dockerfiles (#5474)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbose78 authored Mar 24, 2021
1 parent 95bd1cc commit c13755b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ARG DOCKER_VERSION=18.09.1
ARG KUBECTL_VERSION=1.19.6
ARG JQ_VERSION=1.6

FROM golang:1.15.7 as builder
FROM docker.io/library/golang:1.15.7 as builder

RUN apt-get update && apt-get --no-install-recommends install -y \
git \
Expand Down Expand Up @@ -37,7 +37,7 @@ COPY . .

####################################################################################################

FROM debian:10.7-slim as argoexec-base
FROM docker.io/library/debian:10.7-slim as argoexec-base

ARG DOCKER_CHANNEL
ARG DOCKER_VERSION
Expand Down Expand Up @@ -73,7 +73,7 @@ COPY hack/nsswitch.conf /etc/

####################################################################################################

FROM node:14.0.0 as argo-ui
FROM docker.io/library/node:14.0.0 as argo-ui

COPY ui/package.json ui/yarn.lock ui/

Expand Down

0 comments on commit c13755b

Please sign in to comment.