My Dockerfile contains the following..
ENV APP_HOME=/app/foo-service
CMD [$APP_HOME/start-foo-service.sh]
What is wrong in the above syntax, since the following runs fine
CMD ["/app/foo-service/start-foo-service.sh"]
My Dockerfile contains the following..
ENV APP_HOME=/app/foo-service
CMD [$APP_HOME/start-foo-service.sh]
What is wrong in the above syntax, since the following runs fine
CMD ["/app/foo-service/start-foo-service.sh"]