From dd37947d8898df919a41ca529a3009267ac695cb Mon Sep 17 00:00:00 2001 From: Adil Hafeez Date: Thu, 13 Feb 2025 15:58:18 -0800 Subject: [PATCH] use docker.io for envoy --- arch/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/Dockerfile b/arch/Dockerfile index e1c49f1d..2c3c8744 100644 --- a/arch/Dockerfile +++ b/arch/Dockerfile @@ -8,7 +8,7 @@ RUN cd prompt_gateway && cargo build --release --target wasm32-wasip1 RUN cd llm_gateway && cargo build --release --target wasm32-wasip1 # copy built filter into envoy image -FROM envoyproxy/envoy:v1.32-latest as envoy +FROM docker.io/envoyproxy/envoy:v1.32-latest as envoy #Build config generator, so that we have a single build image for both Rust and Python FROM python:3.12-slim as arch