We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 577f83b commit 3c44cb3Copy full SHA for 3c44cb3
pytorch/Dockerfile
@@ -201,11 +201,12 @@ COPY hf-genai-requirements.txt .
201
RUN python -m pip install --no-cache-dir -r hf-genai-requirements.txt && \
202
rm -rf hf-genai-requirements.txt
203
204
-FROM ipex-xpu-base AS ipex-xpu-jupyter
+FROM ipex-xpu-base-wheels AS ipex-xpu-jupyter
205
206
WORKDIR /jupyter
207
COPY jupyter-requirements.txt .
208
-RUN python -m pip install --no-cache-dir -r jupyter-requirements.txt
+RUN python -m pip install --no-cache-dir -r jupyter-requirements.txt && \
209
+ rm -rf jupyter-requirements.txt
210
211
RUN if eval "which conda >/dev/null )"; then \
212
echo "conda activate idp" >> ~/.bashrc; \
0 commit comments