From e2d2a3bb8976d033e81bd529eb8495261db1db9c Mon Sep 17 00:00:00 2001 From: Stefan Reimer Date: Mon, 15 May 2023 21:08:13 +0000 Subject: [PATCH] Update Alpine to 3.16 --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index bc4a949..24bb585 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,8 @@ # https://aws.amazon.com/blogs/aws/new-for-aws-lambda-container-image-support/ ARG RUNTIME_VERSION="3.9" -ARG DISTRO_VERSION="3.15" + +# libexec is missing from >=3.17 +ARG DISTRO_VERSION="3.16" # Stage 1 - bundle base image + runtime FROM python:${RUNTIME_VERSION}-alpine${DISTRO_VERSION} AS python-alpine @@ -22,11 +24,11 @@ RUN apk upgrade -U --available --no-cache && \ libtool \ autoconf \ automake \ - libexecinfo-dev \ make \ cmake \ libcurl \ libffi-dev \ + libexecinfo-dev \ openssl-dev # cargo