Skip to content

Instantly share code, notes, and snippets.

@tomaserlebach
Created December 17, 2022 14:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomaserlebach/9389335cacb48a0a4b939e1383727a4b to your computer and use it in GitHub Desktop.
Save tomaserlebach/9389335cacb48a0a4b939e1383727a4b to your computer and use it in GitHub Desktop.
Docker Command to install Composer dependencies without having PHP installed
docker run --rm \
-u "$(id -u):$(id -g)" \
-v $(pwd):/var/www/html \
-w /var/www/html \
laravelsail/php81-composer:latest \
composer install --ignore-platform-reqs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment