diff --git a/Dockerfile b/Dockerfile index 762196d..a2279fd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # syntax=docker/dockerfile:labs -FROM alpine:3.20.1 AS build +FROM alpine:3.20.2 AS build SHELL ["/bin/ash", "-eo", "pipefail", "-c"] ARG CURL_VERSION=8.8.0 ARG WS_VERSION=v5.7.2-stable @@ -39,7 +39,7 @@ RUN apk upgrade --no-cache -a && \ make -j "$(nproc)" LDFLAGS="-static -all-static" && \ strip -s /src/curl/src/curl -FROM alpine:3.20.1 +FROM alpine:3.20.2 COPY --from=build /src/curl/src/curl /usr/local/bin/curl RUN apk upgrade --no-cache -a && \ apk add --no-cache ca-certificates tzdata tini && \