I am using the ACI connector in logic apps, and using a customized version of nginx docker image that keeps failing with "CrashLoopBackOff" error.
The customization I've made is just these two:
apt update
apt install ssh
and built a new image out of that. While using the base nginx image (from docker hub - library/nginx) works like a charm, the custom version with SSH installed, always gets into the loop with CrashLoopBackOff error.
I'm not a Linux/Ubuntu guy, any idea what could be the issue? I have in fact tried this many times and also used the Ubuntu base image to do the same customisation (install SSH), but the result is the same
Background: I am using ACI to run a simple shell script on creation. This probably doesn't have anything to do with the error since it works ok with the base nginx image.