We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents af093a3 + ef6ee27 commit 3f42c2cCopy full SHA for 3f42c2c
Dockerfile.proxy_only
@@ -33,11 +33,11 @@ LABEL org.opencontainers.image.description="OptiLLM proxy-only image for API rou
33
LABEL org.opencontainers.image.licenses=Apache-2.0
34
35
# Install curl for the healthcheck
36
-RUN --mount=type=cache,target=/var/cache/apt \
37
- --mount=type=cache,target=/var/lib/apt \
38
- apt-get update && apt-get install -y --no-install-recommends \
+RUN apt-get update && \
+ apt-get install -y --no-install-recommends \
39
curl && \
40
- apt-get clean && rm -rf /var/lib/apt/lists/*
+ apt-get clean && \
+ rm -rf /var/lib/apt/lists/*
41
42
# Set working directory
43
WORKDIR /app
0 commit comments