UNCLASSIFIED

Commit 83e94b2f authored by blake.burkhart's avatar blake.burkhart
Browse files

Update Dockerfile to be better managed by Renovate

parent 61db5c87
Pipeline #222983 passed with stages
in 10 minutes and 54 seconds
...@@ -2,14 +2,18 @@ ARG BASE_REGISTRY=registry1.dso.mil ...@@ -2,14 +2,18 @@ ARG BASE_REGISTRY=registry1.dso.mil
ARG BASE_IMAGE=ironbank/redhat/ubi/ubi8 ARG BASE_IMAGE=ironbank/redhat/ubi/ubi8
ARG BASE_TAG=8.3 ARG BASE_TAG=8.3
FROM istio/proxyv2:1.9.2 AS base # Updated by Renovate
ARG version=1.9.2
FROM istio/proxyv2:${version} AS base
FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG}
# Environment variable indicating the exact proxy sha - for debugging or version-specific configs # Environment variable indicating the exact proxy sha - for debugging or version-specific configs
ENV ISTIO_META_ISTIO_PROXY_SHA=istio-proxy:9ede4aa9d31f9853ef9e61beb69ea9864854e268 # Iron Bank cannot provide a meaningful SHA here, set it to a placeholder value
ENV ISTIO_META_ISTIO_PROXY_SHA=isto-proxy:ironbank
# Environment variable indicating the exact build, for debugging # Environment variable indicating the exact build, for debugging
ENV ISTIO_META_ISTIO_VERSION=1.9.2 ENV ISTIO_META_ISTIO_VERSION=${version}
COPY --from=base /sbin/xtables-multi /sbin/iptables* /sbin/ip6tables* /sbin/ip /sbin/ COPY --from=base /sbin/xtables-multi /sbin/iptables* /sbin/ip6tables* /sbin/ip /sbin/
COPY --from=base /usr/lib/x86_64-linux-gnu/xtables/ /usr/lib/x86_64-linux-gnu/xtables COPY --from=base /usr/lib/x86_64-linux-gnu/xtables/ /usr/lib/x86_64-linux-gnu/xtables
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment