Merge pull request #7 from cdr/jupyter-images

Jupyter images
This commit is contained in:
Sean Smith 2020-05-01 18:08:27 -05:00 committed by GitHub
commit be45977a4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 20 additions and 2 deletions

View File

@ -38,11 +38,12 @@ find and start the following IDEs if their binaries exist in your PATH:
- oni
- monodevelop
- emacs
- jupyter
### Required Packages
The following packages are required in your image if you're using an IDE other than VSCode
to ensure that it can communicate properly with code-server.
The following packages are required in your image if you're using an IDE other
than VSCode or Jupyter to ensure proper communication with code-server.
| Deb Package | Rpm Package | Package Description |
| -------------- | ----------- | ------------------------------------- |
| openssl | openssl | Secure Sockets Layer Toolkit |
@ -75,6 +76,7 @@ it will still require one when running it through code-server.
- Vim
- Oni
- MonoDevelop
- Jupyter
### Known Issues

View File

@ -0,0 +1,7 @@
FROM centos:8
RUN yum update -y && yum install -y \
python36
# Install jupyter
RUN pip3 install jupyterlab

View File

@ -0,0 +1,9 @@
FROM ubuntu:18.04
RUN apt-get update && apt-get install -y \
python3 \
python3-pip
# Install jupyter
RUN pip3 install jupyterlab