aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/tools/dockerfile/test/python_pyenv_x64/Dockerfile.template
diff options
context:
space:
mode:
Diffstat (limited to 'templates/tools/dockerfile/test/python_pyenv_x64/Dockerfile.template')
-rw-r--r--templates/tools/dockerfile/test/python_pyenv_x64/Dockerfile.template8
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/tools/dockerfile/test/python_pyenv_x64/Dockerfile.template b/templates/tools/dockerfile/test/python_pyenv_x64/Dockerfile.template
index ba65c06a3b..1e013b742c 100644
--- a/templates/tools/dockerfile/test/python_pyenv_x64/Dockerfile.template
+++ b/templates/tools/dockerfile/test/python_pyenv_x64/Dockerfile.template
@@ -14,15 +14,15 @@
# See the License for the specific language governing permissions and
# limitations under the License.
- FROM debian:jessie
+ FROM debian:stretch
<%include file="../../apt_get_basic.include"/>
<%include file="../../gcp_api_libraries.include"/>
<%include file="../../python_deps.include"/>
<%include file="../../apt_get_pyenv.include"/>
- # Install pip and virtualenv for Python 3.4
- RUN curl https://bootstrap.pypa.io/get-pip.py | python3.4
- RUN python3.4 -m pip install virtualenv
+ # Install pip and virtualenv for Python 3.5
+ RUN curl https://bootstrap.pypa.io/get-pip.py | python3.5
+ RUN python3.5 -m pip install virtualenv
<%include file="../../run_tests_addons.include"/>
# Define the default command.