Skip to content

Commit 3f42c2c

Browse files
authored
Merge pull request #223 from codelion/fix-dockerfile
Update Dockerfile.proxy_only
2 parents af093a3 + ef6ee27 commit 3f42c2c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Dockerfile.proxy_only

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ LABEL org.opencontainers.image.description="OptiLLM proxy-only image for API rou
3333
LABEL org.opencontainers.image.licenses=Apache-2.0
3434

3535
# 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 \
36+
RUN apt-get update && \
37+
apt-get install -y --no-install-recommends \
3938
curl && \
40-
apt-get clean && rm -rf /var/lib/apt/lists/*
39+
apt-get clean && \
40+
rm -rf /var/lib/apt/lists/*
4141

4242
# Set working directory
4343
WORKDIR /app

0 commit comments

Comments
 (0)