While trying to build a valid custom ruby image i found out that the ENTRYPOINT of the Dockerfile example in the readme is not valid. In my case the `gem install aws_lambda_ric` put the the gem into `usr/local/bundle/bin` and not in `usr/local/bin` So to make it work i had to change the entrypoint from ``` ENTRYPOINT ["/usr/local/bin/aws_lambda_ric"] ``` to ``` ENTRYPOINT [ "/usr/local/bundle/bin/aws_lambda_ric" ] ``` Can i open a PR on the README with the above change proposals ? Maybe someone can find that useful.