Skip to content

Commit 3c44cb3

Browse files
committed
fix xpu jupyter build
Signed-off-by: Srikanth Ramakrishna <srikanth.ramakrishna@intel.com>
1 parent 577f83b commit 3c44cb3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pytorch/Dockerfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -201,11 +201,12 @@ COPY hf-genai-requirements.txt .
201201
RUN python -m pip install --no-cache-dir -r hf-genai-requirements.txt && \
202202
rm -rf hf-genai-requirements.txt
203203

204-
FROM ipex-xpu-base AS ipex-xpu-jupyter
204+
FROM ipex-xpu-base-wheels AS ipex-xpu-jupyter
205205

206206
WORKDIR /jupyter
207207
COPY jupyter-requirements.txt .
208-
RUN python -m pip install --no-cache-dir -r jupyter-requirements.txt
208+
RUN python -m pip install --no-cache-dir -r jupyter-requirements.txt && \
209+
rm -rf jupyter-requirements.txt
209210

210211
RUN if eval "which conda >/dev/null )"; then \
211212
echo "conda activate idp" >> ~/.bashrc; \

0 commit comments

Comments
 (0)