We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2912e74 + b498591 commit deab57eCopy full SHA for deab57e
EvalServer/Dockerfile
@@ -5,7 +5,10 @@ WORKDIR /app
5
6
# Copy requirements first for better caching
7
COPY ./EvalServer/src/requirements.txt requirements.txt
8
-RUN pip install --no-cache-dir -r requirements.txt
+
9
+# Install CPU-only PyTorch first (much smaller, no triton/CUDA), then other deps
10
+RUN pip install --no-cache-dir torch --index-url https://download.pytorch.org/whl/cpu && \
11
+ pip install --no-cache-dir -r requirements.txt
12
13
# Copy the application source
14
COPY ./EvalServer/src .
0 commit comments