From e56bb433e79ffb51c9887119b9855d742349affc Mon Sep 17 00:00:00 2001 From: Adil Hafeez Date: Thu, 15 May 2025 12:31:27 -0700 Subject: [PATCH] add mkdir -p --- arch/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/Dockerfile b/arch/Dockerfile index 142489f3..9c4392ba 100644 --- a/arch/Dockerfile +++ b/arch/Dockerfile @@ -15,6 +15,8 @@ FROM python:3.12-slim as arch RUN apt-get update && apt-get install -y gettext-base curl && apt-get clean && rm -rf /var/lib/apt/lists/* +RUN mkdir -p /etc/envoy/proxy-wasm-plugins + COPY --from=builder /arch/target/wasm32-wasip1/release/prompt_gateway.wasm /etc/envoy/proxy-wasm-plugins/prompt_gateway.wasm COPY --from=builder /arch/target/wasm32-wasip1/release/llm_gateway.wasm /etc/envoy/proxy-wasm-plugins/llm_gateway.wasm COPY --from=envoy /usr/local/bin/envoy /usr/local/bin/envoy