diff --git a/alpine/latest/Dockerfile b/alpine/latest/Dockerfile index 28bd907f..6fdfae5e 100644 --- a/alpine/latest/Dockerfile +++ b/alpine/latest/Dockerfile @@ -4,9 +4,9 @@ # # SPDX-License-Identifier: MIT # -# pinning builder image to Alpine 3.11.5 +# pinning builder image to Alpine 3.12.3 ############################################################### -FROM registry.hub.docker.com/library/alpine:3.11.5 AS builder +FROM registry.hub.docker.com/library/alpine:3.12.3 AS builder ############################################################### # set build args @@ -30,13 +30,13 @@ RUN apk --update add libssh2 libssh2-dev libssh2-static \ nghttp2 RUN mkdir /src -COPY "curl" "/src/curl" +COPY "curl" "/src/curl" WORKDIR /src/curl ############################################################### # get ca cert bundle from curl.haxx.se ############################################################### -RUN curl https://curl.haxx.se/ca/cacert.pem -o /cacert.pem +RUN curl https://curl.haxx.se/ca/cacert.pem -o /cacert.pem ############################################################### # build the tag version @@ -46,12 +46,12 @@ RUN ./buildconf && \ ./configure ${CURL_CONFIGURE_OPTION} &&\ make -j$(nproc) &&\ #make test &&\ - make DESTDIR="/alpine/" install -j$(nproc) + make DESTDIR="/alpine/" install -j$(nproc) ############################################################### # pinning image to Alpine 3.11.5 ############################################################### -FROM registry.hub.docker.com/library/alpine:3.11.5 +FROM registry.hub.docker.com/library/alpine:3.12.3 ARG CURL_RELEASE_TAG=latest ARG CURL_RELEASE_VERSION