From c37853ec6df3387901b9af7395d84618e5c864b8 Mon Sep 17 00:00:00 2001 From: Keith Petersen Date: Fri, 6 Feb 2026 22:34:59 -0600 Subject: [PATCH] fix casing warnings --- Dockerfile | 4 ++-- simple-example/Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index e733cd6..4ba0bed 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ ARG AL_PROVIDED_VERSION=al2023.2026.01.19.11 ARG ARCH=x86_64 -FROM public.ecr.aws/lambda/provided:${AL_PROVIDED_VERSION}-${ARCH} as base +FROM public.ecr.aws/lambda/provided:${AL_PROVIDED_VERSION}-${ARCH} AS base RUN dnf -y update && \ dnf -y install shadow-utils && \ dnf clean all -FROM base as builder +FROM base AS builder RUN dnf -y update && \ dnf -y install gcc openssl-devel bzip2-devel libffi-devel xz-devel zlib-devel tar xz && \ dnf clean all diff --git a/simple-example/Dockerfile b/simple-example/Dockerfile index 95b3c21..17cb764 100644 --- a/simple-example/Dockerfile +++ b/simple-example/Dockerfile @@ -1,7 +1,7 @@ # based on this example # https://github.com/aws/aws-lambda-python-runtime-interface-client/blob/970e9c1d2613e0ce9c388547c76ac30992ad0e96/README.md -FROM public.ecr.aws/docker/library/python:3.14.2-slim-trixie as build-image +FROM public.ecr.aws/docker/library/python:3.14.2-slim-trixie AS build-image # Install aws-lambda-cpp build dependencies (for awslambdaric) RUN apt-get update && \