Add example jupyter images

This commit is contained in:
Sean Smith 2020-05-01 18:01:51 -05:00
parent 8d30b042f3
commit 32ad257c0b
No known key found for this signature in database
GPG Key ID: B9AFA9E3222BF91B
2 changed files with 16 additions and 0 deletions

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