The dev version works perfectly, with and without Docker. But the prod version throws an error I can't seem to resolve.
/bin/bash: /usr/share/nginx/html/env.sh: No such file or directory
I've verified the file exists and the path is correct by adding RUN ls and RUN pwd into the Dockerfile. I'm also curious why you use bash in here instead of sh which already comes with Alpine.
The dev version works perfectly, with and without Docker. But the prod version throws an error I can't seem to resolve.
/bin/bash: /usr/share/nginx/html/env.sh: No such file or directoryI've verified the file exists and the path is correct by adding
RUN lsandRUN pwdinto the Dockerfile. I'm also curious why you use bash in here instead of sh which already comes with Alpine.