Skip to content

Commit 9e34cca

Browse files
committed
Merge branch 'release/v0.1.2'
* release/v0.1.2: Version bump to v0.1.2 Fix PHP Composer installer
2 parents 712cd6b + 9b8530c commit 9e34cca

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## TAG v0.1.2 (2016-19-12)
2+
3+
- Fix PHP composer installer.
4+
15
## TAG v0.1.1 (2016-18-12)
26

37
- Update Nginx to v1.11.7.

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ RUN \
192192

193193
# Install PHP composer
194194
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" && \
195-
php -r "if (hash_file('SHA384', 'composer-setup.php') === 'aa96f26c2b67226a324c27919f1eb05f21c248b987e6195cad9690d5c1ff713d53020a02ac8c217dbf90a7eacc9d141d') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" && \
195+
php -r "if (hash_file('SHA384', 'composer-setup.php') === trim(file_get_contents('https://composer.github.io/installer.sig'))) { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" && \
196196
php composer-setup.php --install-dir=/usr/local/bin --filename=composer && \
197197
php -r "unlink('composer-setup.php');" && \
198198

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
REPO = janus1990
22
IMAGE = docker-nginx-php
3-
VERSION = 0.1.1
3+
VERSION = 0.1.2
44
EXTRAVERSION =
55

66
IMAGE_FQN = $(REPO)/$(IMAGE):v$(VERSION)$(EXTRAVERSION)

0 commit comments

Comments
 (0)