Describe how to easily add composer. Closes #21

migrate-github-actions 1.4.0
Tim de Pater 2020-02-09 08:32:07 +01:00
parent 531442435d
commit 61a7284615
No known key found for this signature in database
GPG Key ID: BFE5D809439C9723
1 changed files with 15 additions and 0 deletions

View File

@ -58,3 +58,18 @@ PHP-FPM configuration:
docker run -v "`pwd`/php-fpm-settings.conf:/etc/php7/php-fpm.d/server.conf" trafex/alpine-nginx-php7
_Note; Because `-v` requires an absolute path I've added `pwd` in the example to return the absolute path to the current directory_
## Adding composer
If you need composer in your project, here's an easy way to add it;
```dockerfile
FROM trafex/alpine-nginx-php7:latest
# Install composer from the official image
COPY --from=composer /usr/bin/composer /usr/bin/composer
# Run composer install to install the dependencies
RUN composer install --optimize-autoloader --no-interaction --no-progress
```