You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Dockerfile
+2-7Lines changed: 2 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ RUN yum -y install yum-utils
7
7
RUN yum-config-manager --enable remi-php72
8
8
RUN yum update -y
9
9
10
-
RUN yum install -yqq \
10
+
RUN yum -y install \
11
11
gcc-c++ \
12
12
make \
13
13
git \
@@ -23,7 +23,7 @@ RUN yum install -yqq \
23
23
unixODBC \
24
24
libtidy
25
25
26
-
RUN yum install -y \
26
+
RUN yum -y install \
27
27
php \
28
28
php-mbstring \
29
29
php-intl \
@@ -38,11 +38,6 @@ RUN yum install -y \
38
38
php-mongodb \
39
39
php-geos
40
40
41
-
RUN curl -sL https://rpm.nodesource.com/setup_8.x | bash -
42
-
RUN curl -sL https://dl.yarnpkg.com/rpm/yarn.repo | tee /etc/yum.repos.d/yarn.repo
43
-
RUN yum install nodejs
44
-
RUN yum install yarn
45
-
46
41
47
42
RUN printf "display_errors=Off\nmax_execution_time=30\nmax_input_time=60\nmax_input_vars=1000\nmemory_limit=1280M\npost_max_size=8M\nupload_max_filesize=2M\nprecision=14\nserialize_precision=14" >> /etc/php.ini
0 commit comments