@fishawack/lab-env 1.16.0 → 1.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/drupal/9/docker-compose.yml +1 -0
- package/drupal/9/php/Dockerfile +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
+
### 1.17.0 (2022-01-27)
|
|
4
|
+
* [Feature] Drupals php image now contains imagemagick and imagick
|
|
5
|
+
* [Change] Drupals php image is now labelled and tagged
|
|
6
|
+
|
|
3
7
|
### 1.16.0 (2022-01-25)
|
|
4
8
|
* [Feature] lab-env now checks if docker process is running. Only `origin` and `--version` commands allowed if not
|
|
5
9
|
|
package/drupal/9/php/Dockerfile
CHANGED
|
@@ -6,6 +6,12 @@ MAINTAINER Mike Mellor
|
|
|
6
6
|
RUN apt-get update && \
|
|
7
7
|
apt-get install -y mariadb-client
|
|
8
8
|
|
|
9
|
+
# Install Imagemagick
|
|
10
|
+
RUN apt-get install -y libmagickwand-dev --no-install-recommends
|
|
11
|
+
|
|
12
|
+
# PHP Imagick ext
|
|
13
|
+
RUN pecl install imagick && docker-php-ext-enable imagick
|
|
14
|
+
|
|
9
15
|
# Cleanup apt-get install folders
|
|
10
16
|
RUN apt-get clean && \
|
|
11
17
|
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|