File tree 1 file changed +10
-0
lines changed
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -5,12 +5,19 @@ LABEL MAINTAINER="Vagner Cardoso <vagnercardosoweb@gmail.com>"
5
5
ENV TZ=America/Sao_Paulo
6
6
ENV WORKDIR=/var/www/app.dev
7
7
8
+ # Set timezone
9
+ RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
10
+
8
11
# Updates and installs system dependencies
9
12
RUN apk add --update --no-cache \
13
+ git \
14
+ vim \
10
15
zip \
11
16
unzip \
12
17
bash \
18
+ curl \
13
19
tzdata \
20
+ icu-dev \
14
21
libxml2-dev \
15
22
libpng-dev \
16
23
libwebp-dev \
@@ -27,6 +34,7 @@ RUN apk add --update --no-cache \
27
34
# Configure php dependency
28
35
RUN docker-php-ext-configure soap --enable-soap
29
36
RUN docker-php-ext-configure gd --enable-gd --with-freetype --with-jpeg --with-webp
37
+ RUN docker-php-ext-configure pcntl --enable-pcntl
30
38
31
39
# Install php dependencies
32
40
RUN docker-php-ext-install \
@@ -43,6 +51,8 @@ RUN docker-php-ext-install \
43
51
opcache \
44
52
intl \
45
53
xsl \
54
+ pcntl \
55
+ sockets \
46
56
exif
47
57
48
58
# Install lib from pecl
You can’t perform that action at this time.
0 commit comments