File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11ARG AL_PROVIDED_VERSION=al2023.2026.01.19.11
22ARG ARCH=x86_64
3- FROM public.ecr.aws/lambda/provided:${AL_PROVIDED_VERSION}-${ARCH} as base
3+ FROM public.ecr.aws/lambda/provided:${AL_PROVIDED_VERSION}-${ARCH} AS base
44RUN dnf -y update && \
55 dnf -y install shadow-utils && \
66 dnf clean all
77
8- FROM base as builder
8+ FROM base AS builder
99RUN dnf -y update && \
1010 dnf -y install gcc openssl-devel bzip2-devel libffi-devel xz-devel zlib-devel tar xz && \
1111 dnf clean all
Original file line number Diff line number Diff line change 11# based on this example
22# https://github.com/aws/aws-lambda-python-runtime-interface-client/blob/970e9c1d2613e0ce9c388547c76ac30992ad0e96/README.md
33
4- FROM public.ecr.aws/docker/library/python:3.14.2-slim-trixie as build-image
4+ FROM public.ecr.aws/docker/library/python:3.14.2-slim-trixie AS build-image
55
66# Install aws-lambda-cpp build dependencies (for awslambdaric)
77RUN apt-get update && \
You can’t perform that action at this time.
0 commit comments