From 6206a4494fcbd9b4c992537452e067d11f1f978b Mon Sep 17 00:00:00 2001 From: yuvipanda Date: Sat, 27 May 2017 18:22:01 -0700 Subject: [PATCH] Upgrade s2i builders to inherit from Ubuntu 17.04 We'll decide on our upgrade policy very soon! Fixes #5 --- s2i-builders/conda/Dockerfile | 2 +- s2i-builders/conda/README.md | 2 +- s2i-builders/venv/Dockerfile | 2 +- s2i-builders/venv/Dockerfile.py2 | 2 +- s2i-builders/venv/README.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/s2i-builders/conda/Dockerfile b/s2i-builders/conda/Dockerfile index 1f136391..3b7164d0 100644 --- a/s2i-builders/conda/Dockerfile +++ b/s2i-builders/conda/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:16.10 +FROM ubuntu:17.04 MAINTAINER Yuvi Panda diff --git a/s2i-builders/conda/README.md b/s2i-builders/conda/README.md index 9c96190d..4c2bdc7a 100755 --- a/s2i-builders/conda/README.md +++ b/s2i-builders/conda/README.md @@ -5,7 +5,7 @@ This is a builder image for use with [s2i](https://github.com/openshift/source-t builds a source repository (such as a github repository) into a docker image that is suitable for use with [JupyterHub](http://github.com/jupyterhub/jupyterhub). -It is based off Ubuntu 16.10, and uses [virtualenv](https://pypi.python.org/pypi/virtualenv) to +It is based off Ubuntu 17.04, and uses [virtualenv](https://pypi.python.org/pypi/virtualenv) to provide a custom python3.5 environment. It looks for a `requirements.txt` file in the source repository, and installs it into the virtualenv. diff --git a/s2i-builders/venv/Dockerfile b/s2i-builders/venv/Dockerfile index 9bb37535..5923f09a 100644 --- a/s2i-builders/venv/Dockerfile +++ b/s2i-builders/venv/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:16.10 +FROM ubuntu:17.04 MAINTAINER Yuvi Panda diff --git a/s2i-builders/venv/Dockerfile.py2 b/s2i-builders/venv/Dockerfile.py2 index 4910cbba..a1846057 100644 --- a/s2i-builders/venv/Dockerfile.py2 +++ b/s2i-builders/venv/Dockerfile.py2 @@ -1,4 +1,4 @@ -FROM ubuntu:16.10 +FROM ubuntu:17.04 MAINTAINER Yuvi Panda diff --git a/s2i-builders/venv/README.md b/s2i-builders/venv/README.md index 9c96190d..4c2bdc7a 100755 --- a/s2i-builders/venv/README.md +++ b/s2i-builders/venv/README.md @@ -5,7 +5,7 @@ This is a builder image for use with [s2i](https://github.com/openshift/source-t builds a source repository (such as a github repository) into a docker image that is suitable for use with [JupyterHub](http://github.com/jupyterhub/jupyterhub). -It is based off Ubuntu 16.10, and uses [virtualenv](https://pypi.python.org/pypi/virtualenv) to +It is based off Ubuntu 17.04, and uses [virtualenv](https://pypi.python.org/pypi/virtualenv) to provide a custom python3.5 environment. It looks for a `requirements.txt` file in the source repository, and installs it into the virtualenv.