Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
J
Jupyter Docker Stacks
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
Jupyter Docker Stacks
Commits
5eca3cae
Commit
5eca3cae
authored
Jul 09, 2019
by
Min RK
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stop removing qt
it makes the conda env invalid, which causes errors in later installs
parent
50ae9cde
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
4 deletions
+1
-4
Makefile
Makefile
+1
-1
scipy-notebook/Dockerfile
scipy-notebook/Dockerfile
+0
-3
No files found.
Makefile
View file @
5eca3cae
...
@@ -87,4 +87,4 @@ test/%: ## run tests against a stack
...
@@ -87,4 +87,4 @@ test/%: ## run tests against a stack
@
TEST_IMAGE
=
"
$(OWNER)
/
$(
notdir
$@
)
"
pytest
test
@
TEST_IMAGE
=
"
$(OWNER)
/
$(
notdir
$@
)
"
pytest
test
test/base-notebook
:
##
test supported options in the base notebook
test/base-notebook
:
##
test supported options in the base notebook
@
TEST_IMAGE
=
"
$(OWNER)
/
$(
notdir
$@
)
"
pytest
test
base-notebook/test
@
TEST_IMAGE
=
"
$(OWNER)
/
$(
notdir
$@
)
"
pytest
test
base-notebook/test
\ No newline at end of file
scipy-notebook/Dockerfile
View file @
5eca3cae
...
@@ -15,8 +15,6 @@ RUN apt-get update && \
...
@@ -15,8 +15,6 @@ RUN apt-get update && \
USER
$NB_UID
USER
$NB_UID
# Install Python 3 packages
# Install Python 3 packages
# Remove pyqt and qt pulled in for matplotlib since we're only ever going to
# use notebook-friendly backends in these images
RUN
conda
install
--quiet
--yes
\
RUN
conda
install
--quiet
--yes
\
'conda-forge::blas=*=openblas'
\
'conda-forge::blas=*=openblas'
\
'ipywidgets=7.4*'
\
'ipywidgets=7.4*'
\
...
@@ -43,7 +41,6 @@ RUN conda install --quiet --yes \
...
@@ -43,7 +41,6 @@ RUN conda install --quiet --yes \
'beautifulsoup4=4.7.*'
\
'beautifulsoup4=4.7.*'
\
'protobuf=3.7.*'
\
'protobuf=3.7.*'
\
'xlrd'
&&
\
'xlrd'
&&
\
conda remove
--quiet
--yes
--force
qt pyqt
&&
\
conda clean
--all
-f
-y
&&
\
conda clean
--all
-f
-y
&&
\
# Activate ipywidgets extension in the environment that runs the notebook server
# Activate ipywidgets extension in the environment that runs the notebook server
jupyter nbextension enable --py widgetsnbextension --sys-prefix && \
jupyter nbextension enable --py widgetsnbextension --sys-prefix && \
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment