This image provides Composer and installs vendor dependencies for Pod Point Laravel applications. It is based on the Official Composer image.
We provide the following version tags:
Use as part of a multi-stage build to install Composer dependencies:
FROM podpoint/composer:latest as vendor
You can then copy your vendor assets into your final image:
COPY --from=vendor /app/vendor/ /srv/www/vendor/
You can optionally supply a composer_token
argument to authenticate against github with a token:
$ docker build --build-arg composer_token=TOKEN -t podpoint/my-image .