From e304603042eb2104ad222b13a2ac099455cebc1e Mon Sep 17 00:00:00 2001 From: chambbj Date: Mon, 5 Feb 2018 16:50:11 -0500 Subject: [PATCH] Update Alpine version to 3.7 for Travis (#1799) We have been pushing Docker images built on Alpine v3.7, but our Travis config has been stuck back on v3.6. These should match. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6e0fce0007..dd8451f057 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,10 +6,10 @@ sudo: required services: docker before_install: - - docker pull alpine:3.6 + - docker pull alpine:3.7 script: - - docker run -v $TRAVIS_BUILD_DIR:/pdal -t alpine:3.6 /bin/sh -c "/pdal/scripts/ci/script.sh" + - docker run -v $TRAVIS_BUILD_DIR:/pdal -t alpine:3.7 /bin/sh -c "/pdal/scripts/ci/script.sh" after_success: - echo "secure travis:" "$TRAVIS_SECURE_ENV_VARS"