Deploying on Elastic Beanstalk #305
Unanswered
candersson1
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi there, I have a Rails 6.1 app I am developing I have successfully used the ruby-vips gem to generate a dzi image using the "dzsave" method. It is for use in openseadragon. Works great in development.
I have now spent two days trying to get it to deploy to an AWS Elastic Beanstalk Instance.
At first it appeared that I needed to install vips on the server which I was able to do using this .ebextensions.config script
"/opt/elasticbeanstalk/hooks/appdeploy/pre/10_libvip_installer.sh" :
mode: "000775"
owner: root
group: users
content: |
#!/usr/bin/env bash
This succesfully installs vips but dzsave will not work without the 'libgsf-1' library. I have tried for hours to get that installed on the Beanstalk instance with no luck. I have tried SSHing into the instance and manually installing it but I end up in an endless loop of dependency requirements. There must be an easier way...
Do any of you have any experience with this?
Beta Was this translation helpful? Give feedback.
All reactions