From ef6ee27a29ccb123f46e62fb38f36bc5bbf310a9 Mon Sep 17 00:00:00 2001 From: Asankhaya Sharma Date: Sat, 23 Aug 2025 00:04:13 +0800 Subject: [PATCH] Update Dockerfile.proxy_only --- Dockerfile.proxy_only | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile.proxy_only b/Dockerfile.proxy_only index a3c9f29a..d5bc236a 100644 --- a/Dockerfile.proxy_only +++ b/Dockerfile.proxy_only @@ -33,11 +33,11 @@ LABEL org.opencontainers.image.description="OptiLLM proxy-only image for API rou LABEL org.opencontainers.image.licenses=Apache-2.0 # Install curl for the healthcheck -RUN --mount=type=cache,target=/var/cache/apt \ - --mount=type=cache,target=/var/lib/apt \ - apt-get update && apt-get install -y --no-install-recommends \ +RUN apt-get update && \ + apt-get install -y --no-install-recommends \ curl && \ - apt-get clean && rm -rf /var/lib/apt/lists/* + apt-get clean && \ + rm -rf /var/lib/apt/lists/* # Set working directory WORKDIR /app