File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -13,17 +13,17 @@ CMD ["/sbin/my_init"]
13
13
14
14
# Nginx-PHP Installation
15
15
RUN apt-get update
16
- RUN apt-get install -y vim curl wget build-essential python-software-properties
16
+ RUN DEBIAN_FRONTEND= "noninteractive" apt-get install -y vim curl wget build-essential python-software-properties
17
17
RUN add-apt-repository -y ppa:ondrej/php5
18
18
RUN add-apt-repository -y ppa:nginx/stable
19
19
RUN apt-get update
20
- RUN apt-get install -y --force-yes php5-cli php5-fpm php5-mysql php5-pgsql php5-sqlite php5-curl\
20
+ RUN DEBIAN_FRONTEND= "noninteractive" apt-get install -y --force-yes php5-cli php5-fpm php5-mysql php5-pgsql php5-sqlite php5-curl\
21
21
php5-gd php5-mcrypt php5-intl php5-imap php5-tidy
22
22
23
23
RUN sed -i "s/;date.timezone =.*/date.timezone = UTC/" /etc/php5/fpm/php.ini
24
24
RUN sed -i "s/;date.timezone =.*/date.timezone = UTC/" /etc/php5/cli/php.ini
25
25
26
- RUN apt-get install -y nginx
26
+ RUN DEBIAN_FRONTEND= "noninteractive" apt-get install -y nginx
27
27
28
28
RUN echo "daemon off;" >> /etc/nginx/nginx.conf
29
29
RUN sed -i -e "s/;daemonize\s *=\s *yes/daemonize = no/g" /etc/php5/fpm/php-fpm.conf
You can’t perform that action at this time.
0 commit comments