Skip to content

Commit babb2ff

Browse files
committed
fix casing warnings
1 parent 99dda50 commit babb2ff

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
ARG AL_PROVIDED_VERSION=al2023.2026.01.19.11
22
ARG 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
44
RUN dnf -y update && \
55
dnf -y install shadow-utils && \
66
dnf clean all
77

8-
FROM base as builder
8+
FROM base AS builder
99
RUN dnf -y update && \
1010
dnf -y install gcc openssl-devel bzip2-devel libffi-devel xz-devel zlib-devel tar xz && \
1111
dnf clean all

simple-example/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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)
77
RUN apt-get update && \

0 commit comments

Comments
 (0)