From 2dc325b59b84b609d5b39e89ed1646846b5241f0 Mon Sep 17 00:00:00 2001 From: Dennis Hermsmeier Date: Fri, 12 Jul 2019 10:04:36 +0200 Subject: [PATCH] bump to alpine 3.10 (#5) * bump to alpine 3.10 * bump to alpine 3.10 --- .travis.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2370f24..cd01144 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,7 +16,7 @@ env: before_script: - sudo sysctl -w net.ipv4.ip_forward=1 - - export ALPINE_VERSION="3.9" + - export ALPINE_VERSION="3.10" - export OPENSSH_VERSION="$(w3m -dump "https://pkgs.alpinelinux.org/packages?name=openssh&branch=v${ALPINE_VERSION}" | grep -m 1 "x86" | awk '{print $2}')" script: | diff --git a/Dockerfile b/Dockerfile index 0d6ae27..4e29ea0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG ALPINE_VERSION="${ALPINE_VERSION:-3.9}" +ARG ALPINE_VERSION="${ALPINE_VERSION:-3.10}" FROM alpine:"${ALPINE_VERSION}" LABEL maintainer="https://github.com/hermsi1337"