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 abf8e41 commit 96509f7Copy full SHA for 96509f7
.gitignore
@@ -11,3 +11,5 @@ test/examples/hello-world-docker/pkg
11
*.iml
12
.DS_Store
13
Gemfile.lock
14
+# useful when using rbenv
15
+.ruby-version
Dockerfile.test
@@ -0,0 +1,6 @@
1
+FROM public.ecr.aws/lambda/ruby:3.3
2
+ENV GEM_HOME=/var/runtime
3
+RUN gem uninstall aws_lambda_ric --executables
4
+ADD pkg /tmp/pkg
5
+RUN gem install /tmp/pkg/aws_lambda_ric-*.gem
6
+RUN rm -rf /tmp/pkg
0 commit comments