We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 731c0a0 commit 9ab68a5Copy full SHA for 9ab68a5
1 file changed
Dockerfile
@@ -7,7 +7,18 @@ RUN apk update
7
RUN apk add \
8
bash \
9
unzip \
10
- ca-certificates
+ ca-certificates \
11
+ openssh \
12
+ g++ \
13
+ make \
14
+ zlib-dev \
15
+ libpng-dev
16
+
17
+# Install Composer
18
19
+RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" \
20
+ php composer-setup.php --filename=composer --install-dir=/usr/local/bin; \
21
+ php -r "unlink('composer-setup.php');"
22
23
# Install Node 8
24
0 commit comments