https://github.com/pod-point/docker-composer
Pod Point Composer Docker Image
https://github.com/pod-point/docker-composer
composer devops-team docker-image
Last synced: 7 months ago
JSON representation
Pod Point Composer Docker Image
- Host: GitHub
- URL: https://github.com/pod-point/docker-composer
- Owner: Pod-Point
- Created: 2018-12-07T16:01:45.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-07T09:42:38.000Z (about 7 years ago)
- Last Synced: 2025-04-13T08:57:02.611Z (about 1 year ago)
- Topics: composer, devops-team, docker-image
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/podpoint/composer
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Composer
=====================
[](https://hub.docker.com/r/podpoint/composer)
[](https://hub.docker.com/r/podpoint/composer)
[](https://microbadger.com/images/podpoint/composer)
This image provides Composer and installs vendor dependencies for Pod Point Laravel applications.
It is based on the [Official Composer](https://hub.docker.com/_/composer) image.
# Supported tags and respective `Dockerfile` links
We provide the following version tags:
* [`latest` (*Dockerfile*)](https://github.com/Pod-Point/docker-composer/blob/master/Dockerfile)
# Usage
Use as part of a multi-stage build to install Composer dependencies:
```Dockerfile
FROM podpoint/composer:latest as vendor
```
You can then copy your vendor assets into your final image:
```Dockerfile
COPY --from=vendor /app/vendor/ /srv/www/vendor/
```
You can optionally supply a `composer_token` argument to authenticate against github with a token:
```bash
$ docker build --build-arg composer_token=TOKEN -t podpoint/my-image .
```