-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change image docker source version
- Loading branch information
Showing
5 changed files
with
31 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,22 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). | ||
|
||
## [1.1] - 2018-01-16 | ||
|
||
### Changed | ||
|
||
- Change version of docker image source | ||
|
||
## [1.0] - 2017-12-26 | ||
|
||
### Added | ||
|
||
- Add dependencies.yml file for dependencies.io | ||
|
||
### Changed | ||
|
||
- Fix version of EnvdevPHPBase image to 7.2 version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,19 @@ | ||
FROM vfac/envdevphpbase:7.2 | ||
FROM vfac/envdevphpbase:7.2-alpine | ||
LABEL maintainer="Vincent Faliès <[email protected]>" | ||
|
||
# Allow Composer to be run as root | ||
ENV COMPOSER_ALLOW_SUPERUSER 1 | ||
|
||
RUN composer global require roave/better-reflection:dev-master#c87d856 | ||
RUN composer global require apigen/apigen:dev-master | ||
RUN apk update \ | ||
&& apk upgrade \ | ||
&& apk add \ | ||
openssh \ | ||
&& rm -rf /var/cache/apk/* | ||
|
||
COPY composer.json /app/composer.json | ||
RUN cd /app/ \ | ||
&& composer update --lock | ||
|
||
COPY php.ini /usr/local/etc/php/php.ini | ||
|
||
ENTRYPOINT ["/root/.composer/vendor/bin/apigen"] | ||
ENTRYPOINT ["/app/vendor/bin/apigen"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"name": "vfalies/apigen", | ||
"description": "Apigen tool docker image", | ||
"require": { | ||
"roave/better-reflection": "dev-master#c87d856", | ||
"apigen/apigen": "dev-master" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters