Skip to content

Commit 86472bd

Browse files
author
AntoniaSzecsi
committed
Upgrade to the latest base image and create clean start
1 parent ed18056 commit 86472bd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Dockerfile.rie

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
FROM public.ecr.aws/lambda/ruby:3.2
1+
FROM public.ecr.aws/lambda/ruby:3.3.2025.08.26.15
22

33
# Copy source code and build gem in container
44
COPY . ${LAMBDA_TASK_ROOT}/
55
WORKDIR ${LAMBDA_TASK_ROOT}
66

7+
# Uninstall any existing RIC gem for a clean start
8+
RUN gem uninstall -x aws_lambda_ric || true
9+
710
# Build and install the RIC gem
811
RUN gem install bundler && \
912
bundle install && \

0 commit comments

Comments
 (0)