Skip to content

Commit 9e95907

Browse files
committed
Move customizations after standard php_vars config runs
1 parent 39094f7 commit 9e95907

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

Dockerfile

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -182,13 +182,6 @@ RUN echo @testing http://nl.alpinelinux.org/alpine/edge/testing >> /etc/apk/repo
182182
apk del gcc musl-dev linux-headers libffi-dev augeas-dev python-dev
183183
# ln -s /usr/bin/php7 /usr/bin/php
184184

185-
# TS Customizations
186-
RUN apk add --no-cache mysql-client \
187-
su-exec \
188-
rsync
189-
RUN echo "sendmail_path=`which true`" >> ${php_vars} && \
190-
composer global require "hirak/prestissimo:^0.3"
191-
192185
ADD conf/supervisord.conf /etc/supervisord.conf
193186

194187
# Copy our nginx config
@@ -229,6 +222,12 @@ RUN echo "cgi.fix_pathinfo=0" > ${php_vars} &&\
229222
# ln -s /etc/php7/php.ini /etc/php7/conf.d/php.ini && \
230223
# find /etc/php7/conf.d/ -name "*.ini" -exec sed -i -re 's/^(\s*)#(.*)/\1;\2/g' {} \;
231224

225+
# TS Customizations
226+
RUN apk add --no-cache mysql-client \
227+
su-exec \
228+
rsync
229+
RUN echo "sendmail_path=`which true`" >> ${php_vars} && \
230+
composer global require "hirak/prestissimo:^0.3"
232231

233232
# Add Scripts
234233
ADD scripts/start.sh /start.sh

0 commit comments

Comments
 (0)