We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed18056 commit 86472bdCopy full SHA for 86472bd
Dockerfile.rie
@@ -1,9 +1,12 @@
1
-FROM public.ecr.aws/lambda/ruby:3.2
+FROM public.ecr.aws/lambda/ruby:3.3.2025.08.26.15
2
3
# Copy source code and build gem in container
4
COPY . ${LAMBDA_TASK_ROOT}/
5
WORKDIR ${LAMBDA_TASK_ROOT}
6
7
+# Uninstall any existing RIC gem for a clean start
8
+RUN gem uninstall -x aws_lambda_ric || true
9
+
10
# Build and install the RIC gem
11
RUN gem install bundler && \
12
bundle install && \
0 commit comments