@@ -3,7 +3,7 @@ FROM jdeathe/centos-ssh:2.6.0
33# Use the form ([{fqdn}-]{package-name}|[{fqdn}-]{provider-name})
44ARG PACKAGE_NAME="app"
55ARG PACKAGE_PATH="/opt/${PACKAGE_NAME}"
6- ARG PACKAGE_RELEASE_VERSION="0.12 .0"
6+ ARG PACKAGE_RELEASE_VERSION="0.13 .0"
77ARG RELEASE_VERSION="2.2.0"
88
99# ------------------------------------------------------------------------------
@@ -47,9 +47,9 @@ ADD src /
4747# - Disable Apache default fcgid configuration; replaced with 00-fcgid.conf
4848# - Custom Apache configuration
4949# - Disable all Apache modules and enable the minimum
50- # - Disable SSL
5150# - Disable the default SSL Virtual Host
52- # - Global PHP configuration changes
51+ # - Disable SSL
52+ # - Add default PHP configuration overrides to 00-php.ini drop-in.
5353# - Replace placeholders with values in systemd service unit template
5454# - Set permissions
5555# ------------------------------------------------------------------------------
@@ -215,9 +215,6 @@ RUN mkdir -p -m 750 ${PACKAGE_PATH} \
215215 && mv \
216216 ${PACKAGE_PATH}/public \
217217 ${PACKAGE_PATH}/public_html \
218- && rm -f \
219- ${PACKAGE_PATH}/bin/php-wrapper \
220- ${PACKAGE_PATH}/etc/httpd/conf.d/50-fcgid.conf \
221218 && $(\
222219 if [[ -f /usr/share/php-pecl-apc/apc.php ]]; then \
223220 cp \
@@ -228,8 +225,7 @@ RUN mkdir -p -m 750 ${PACKAGE_PATH} \
228225 && chown -R app:app-www ${PACKAGE_PATH} \
229226 && find ${PACKAGE_PATH} -type d -exec chmod 750 {} + \
230227 && find ${PACKAGE_PATH}/var -type d -exec chmod 770 {} + \
231- && find ${PACKAGE_PATH} -type f -exec chmod 640 {} + \
232- && find ${PACKAGE_PATH}/bin -type f -exec chmod 750 {} +
228+ && find ${PACKAGE_PATH} -type f -exec chmod 640 {} +
233229
234230EXPOSE 80 443 8443
235231
0 commit comments