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.
1 parent 8b4e6fc commit 009057cCopy full SHA for 009057c
Dockerfile.proxy_only
@@ -10,13 +10,13 @@ ENV OPTILLM_PORT=$PORT
10
WORKDIR /app
11
12
# Install system dependencies
13
-RUN --mount=type=cache,target=/var/cache/apt \
14
- --mount=type=cache,target=/var/lib/apt \
15
- apt-get update && apt-get install -y --no-install-recommends \
+RUN apt-get update && \
+ apt-get install -y --no-install-recommends \
16
build-essential \
17
python3-dev \
18
gcc \
19
g++ \
+ && apt-get clean \
20
&& rm -rf /var/lib/apt/lists/*
21
22
# Copy only the requirements file first to leverage Docker cache
0 commit comments