From bfb60003de2df101a3e6ffbfc14bd9206b573524 Mon Sep 17 00:00:00 2001 From: Stefan Reimer Date: Fri, 4 Aug 2023 13:55:43 +0000 Subject: [PATCH] Pepare Dockerfile for Renovate --- Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 24bb585..8c99c9e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,8 @@ # https://aws.amazon.com/blogs/aws/new-for-aws-lambda-container-image-support/ -ARG RUNTIME_VERSION="3.9" - # 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 +FROM python:3.9-alpine3.16 AS python-alpine # Install GCC (Alpine uses musl but we compile and link dependencies with GCC) RUN apk upgrade -U --available --no-cache && \