Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Dockerfile.proxy_only
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down