From b9c93e96ac42e7d58b993eda8b13947b5a4a67c7 Mon Sep 17 00:00:00 2001 From: Dennis Hermsmeier Date: Sun, 9 Feb 2020 13:30:18 +0100 Subject: [PATCH] bump alpine to 3.11 (#10) --- .travis.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index cd01144..9ecdc33 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.10" + - export ALPINE_VERSION="3.11" - 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 eefd7e2..981779b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG ALPINE_VERSION="${ALPINE_VERSION:-3.10}" +ARG ALPINE_VERSION="${ALPINE_VERSION:-3.11}" FROM alpine:"${ALPINE_VERSION}" LABEL maintainer="https://github.com/hermsi1337"