diff --git a/docs/check.Dockerfile b/docs/check.Dockerfile index 04070b030..53b914c66 100644 --- a/docs/check.Dockerfile +++ b/docs/check.Dockerfile @@ -1,5 +1,5 @@ -FROM alpine:3.14.1 as alpine +FROM alpine:3.14 as alpine RUN apk --no-cache --no-progress add \ libcurl \ diff --git a/docs/content/routing/providers/kubernetes-gateway.md b/docs/content/routing/providers/kubernetes-gateway.md index b37820ce1..97a857eb9 100644 --- a/docs/content/routing/providers/kubernetes-gateway.md +++ b/docs/content/routing/providers/kubernetes-gateway.md @@ -38,8 +38,8 @@ You can find an excerpt of the supported Kubernetes Gateway API resources in the | [GatewayClass](#kind-gatewayclass) | Defines a set of Gateways that share a common configuration and behaviour | [GatewayClass](https://gateway-api.sigs.k8s.io/v1alpha1/api-types/gatewayclass) | | [Gateway](#kind-gateway) | Describes how traffic can be translated to Services within the cluster | [Gateway](https://gateway-api.sigs.k8s.io/v1alpha1/api-types/gateway) | | [HTTPRoute](#kind-httproute) | HTTP rules for mapping requests from a Gateway to Kubernetes Services | [Route](https://gateway-api.sigs.k8s.io/v1alpha1/api-types/httproute) | -| [TCPRoute](#kind-tcproute) | Allows mapping TCP requests from a Gateway to Kubernetes Services | [Route](https://gateway-api.sigs.k8s.io/concepts/api-overview/#httptcpfooroute) | -| [TLSRoute](#kind-tlsroute) | Allows mapping TLS requests from a Gateway to Kubernetes Services | [Route](https://gateway-api.sigs.k8s.io/concepts/api-overview/#httptcpfooroute) | +| [TCPRoute](#kind-tcproute) | Allows mapping TCP requests from a Gateway to Kubernetes Services | [Route](https://gateway-api.sigs.k8s.io/concepts/api-overview/#tcproute-and-udproute)| +| [TLSRoute](#kind-tlsroute) | Allows mapping TLS requests from a Gateway to Kubernetes Services | [Route](https://gateway-api.sigs.k8s.io/concepts/api-overview/#tcproute-and-udproute)| ### Kind: `GatewayClass` diff --git a/docs/docs.Dockerfile b/docs/docs.Dockerfile index f439a1db4..ee10a5302 100644 --- a/docs/docs.Dockerfile +++ b/docs/docs.Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.14.1 +FROM alpine:3.14 ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.local/bin diff --git a/exp.Dockerfile b/exp.Dockerfile index 11f825fb0..4d7bd5cca 100644 --- a/exp.Dockerfile +++ b/exp.Dockerfile @@ -38,7 +38,7 @@ COPY --from=webui /src/static/ /go/src/github.com/traefik/traefik/static/ RUN ./script/make.sh generate binary ## IMAGE -FROM alpine:3.14.1 +FROM alpine:3.14 RUN apk --no-cache --no-progress add bash curl ca-certificates tzdata \ && update-ca-certificates \