Skip to content

Commit 92edc2d

Browse files
authored
Merge pull request #1777 from typhoonzero/fix_dev_image_build
Fix dev image build error
2 parents b088e80 + eae68ab commit 92edc2d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,14 @@ RUN git config --global credential.helper store
3636
# Fix locales to en_US.UTF-8
3737
RUN localedef -i en_US -f UTF-8 en_US.UTF-8
3838

39+
# FIXME: due to temporary ipykernel dependency issue, specify ipykernel jupyter
40+
# version util jupyter fixes this issue.
3941
RUN pip install --upgrade pip && \
4042
pip install -U 'protobuf==3.1.0' && \
4143
pip install -U wheel pillow BeautifulSoup && \
4244
pip install -U docopt PyYAML sphinx && \
4345
pip install -U sphinx-rtd-theme==0.1.9 recommonmark && \
44-
pip install -U pre-commit 'requests==2.9.2' jupyter
46+
pip install pre-commit 'requests==2.9.2' 'ipykernel==4.6.0' 'jupyter==1.0.0'
4547

4648
RUN curl -sSL https://cmake.org/files/v3.4/cmake-3.4.1.tar.gz | tar -xz && \
4749
cd cmake-3.4.1 && ./bootstrap && make -j `nproc` && make install && \

0 commit comments

Comments
 (0)