docker-nginx-brotli
docker-nginx-brotli copied to clipboard
Local docker command starts breaking
My last command at dockerfile is CMD ["/bin/ash", "run.sh"]
And I am getting an error - nginx: invalid option: "ash"
As we found out the entrypoint is added which is nginx, can this be reason behind this issue? What can be the possible solution to this?
yes that's likely because I added the entrypoint. If you have a Dockerfile using FROM this image, you could try adding this to your Dockerfile:
ENTRYPOINT ["/bin/ash"]
CMD ["run.sh"]