From 5c44356ee50c4f8889d5591c898982d46d7da944 Mon Sep 17 00:00:00 2001 From: Elina Akhmanova Date: Wed, 26 Apr 2023 14:21:44 +0200 Subject: [PATCH] Update Dockerfile.echo base image Debian:9 is too old to be used and it needs to be updated, moving to distroless-debian11 --- Dockerfile.echo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.echo b/Dockerfile.echo index c407bb3013..f2678a91ea 100644 --- a/Dockerfile.echo +++ b/Dockerfile.echo @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM debian:9 +FROM gcr.io/distroless/static-debian11:nonroot ADD bin/ARG_ARCH/ARG_BIN /ARG_BIN ENTRYPOINT ["/ARG_BIN"]