Docker extend entrypoint script from docker-compose
I'm very new to Docker. I dockerized my Laravel application. This is the base image php:8.1.2-apache At the end of Dockerfile I'm using my own entrypoint script ENTRYPOINT ["/usr/local/bin/start"] This script (/usr/local/bin/start) contains few commands like composer install --no-interaction &&…