Skip to content

Pod-Point/docker-composer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

Composer

https://hub.docker.com/r/podpoint/composer/ Docker Pulls

This image provides Composer and installs vendor dependencies for Pod Point Laravel applications. It is based on the Official Composer image.

Supported tags and respective Dockerfile links

We provide the following version tags:

Usage

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 .