kopia lustrzana https://github.com/jupyterhub/repo2docker
commit
6e9088d79e
|
@ -10,7 +10,7 @@ import re
|
||||||
import docker
|
import docker
|
||||||
|
|
||||||
TEMPLATE = r"""
|
TEMPLATE = r"""
|
||||||
FROM buildpack-deps:zesty
|
FROM buildpack-deps:artful
|
||||||
|
|
||||||
# Set up locales properly
|
# Set up locales properly
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
|
@ -151,7 +151,6 @@ class BuildPack(LoggingConfigurable):
|
||||||
# FIXME: Use npm from nodesource!
|
# FIXME: Use npm from nodesource!
|
||||||
# Everything seems to depend on npm these days, unfortunately.
|
# Everything seems to depend on npm these days, unfortunately.
|
||||||
"npm",
|
"npm",
|
||||||
"nodejs-legacy"
|
|
||||||
},
|
},
|
||||||
help="""
|
help="""
|
||||||
Base set of apt packages that are installed for all images.
|
Base set of apt packages that are installed for all images.
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
# A bunch of external datascience related repos we care about!
|
|
||||||
- name: Jake's Data Science Book
|
|
||||||
url: https://github.com/jakevdp/PythonDataScienceHandbook
|
|
||||||
ref: de0cc6bd31
|
|
||||||
verify: python -c 'import matplotlib'
|
|
|
@ -1,4 +1,4 @@
|
||||||
FROM ubuntu:zesty
|
FROM ubuntu:artful
|
||||||
|
|
||||||
RUN apt-get update && apt-get install --yes python3
|
RUN apt-get update && apt-get install --yes python3
|
||||||
|
|
||||||
|
|
|
@ -2,5 +2,5 @@
|
||||||
# Verify that the default just provides a py3 environment with jupyter
|
# Verify that the default just provides a py3 environment with jupyter
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
assert sys.version_info[:2] == (3, 5)
|
assert sys.version_info[:2] == (3, 6)
|
||||||
import jupyter
|
import jupyter
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
assert sys.version_info[:2] == (3, 5)
|
assert sys.version_info[:2] == (3, 6)
|
||||||
|
|
||||||
import numpy
|
import numpy
|
||||||
|
|
Ładowanie…
Reference in New Issue