Use airshipit/alpine in krm-functions
Changes the base image for krm-functions from the upstream alpine image hosted on dockerhub to our quay-hosted airshipit/alpine image to avoid dockerhub pull limits. Closes: #514 Change-Id: Id2f3e95c4d238642c1f814ec4821d7b8b148984a
This commit is contained in:
parent
0d588c83b1
commit
96b6a1da71
@ -1,5 +1,5 @@
|
||||
ARG GO_IMAGE=gcr.io/gcp-runtimes/go1-builder:1.15
|
||||
ARG PLUGINS_RELEASE_IMAGE=alpine:3.12.0
|
||||
ARG PLUGINS_RELEASE_IMAGE=quay.io/airshipit/alpine:3.13.5
|
||||
FROM ${GO_IMAGE} as builder
|
||||
|
||||
# Inject custom root certificate authorities if needed
|
||||
|
@ -1,6 +1,5 @@
|
||||
ARG GO_IMAGE=gcr.io/gcp-runtimes/go1-builder:1.15
|
||||
ARG PLUGINS_RELEASE_IMAGE=alpine:3.12.0
|
||||
|
||||
ARG PLUGINS_RELEASE_IMAGE=quay.io/airshipit/alpine:3.13.5
|
||||
FROM ${GO_IMAGE} as function
|
||||
# Inject custom root certificate authorities if needed
|
||||
# Docker does not have a good conditional copy statement and requires that a source file exists
|
||||
|
@ -1,5 +1,5 @@
|
||||
ARG GO_IMAGE=gcr.io/gcp-runtimes/go1-builder:1.15
|
||||
ARG PLUGINS_RELEASE_IMAGE=alpine:3.12.0
|
||||
ARG PLUGINS_RELEASE_IMAGE=quay.io/airshipit/alpine:3.13.5
|
||||
FROM ${GO_IMAGE} as builder
|
||||
|
||||
# Inject custom root certificate authorities if needed
|
||||
|
@ -1,5 +1,5 @@
|
||||
ARG GO_IMAGE=gcr.io/gcp-runtimes/go1-builder:1.15
|
||||
ARG PLUGINS_RELEASE_IMAGE=alpine:3.12.0
|
||||
ARG PLUGINS_RELEASE_IMAGE=quay.io/airshipit/alpine:3.13.5
|
||||
FROM ${GO_IMAGE} as builder
|
||||
|
||||
# Inject custom root certificate authorities if needed
|
||||
|
@ -1,9 +1,10 @@
|
||||
ARG GO_IMAGE=gcr.io/gcp-runtimes/go1-builder:1.15
|
||||
ARG PLUGINS_BUILD_IMAGE=alpine:3.12.0
|
||||
ARG PLUGINS_RELEASE_IMAGE=alpine:3.12.0
|
||||
ARG PLUGINS_BUILD_IMAGE=quay.io/airshipit/alpine:3.13.5
|
||||
ARG PLUGINS_RELEASE_IMAGE=quay.io/airshipit/alpine:3.13.5
|
||||
FROM ${PLUGINS_BUILD_IMAGE} as ctls
|
||||
|
||||
RUN apk update && apk add curl
|
||||
|
||||
# Inject custom root certificate authorities if needed
|
||||
# Docker does not have a good conditional copy statement and requires that a source file exists
|
||||
# to complete the copy function without error. Therefore the README.md file will be copied to
|
||||
|
Loading…
Reference in New Issue
Block a user