5.0.0-rhel-7-r4 release

This commit is contained in:
Bitnami Bot
2018-12-13 03:30:14 +00:00
parent e1a33473be
commit 8fa33fc2c6
4 changed files with 37 additions and 12 deletions

View File

@@ -7,22 +7,21 @@ ENV BITNAMI_PKG_CHMOD="-R g+rwX" \
# Install required system packages and dependencies
RUN install_packages bzip2-libs cyrus-sasl-lib expat freetype glibc gmp keyutils-libs krb5-libs libcom_err libcurl libgcc libgcrypt libgpg-error libicu libidn libjpeg-turbo libpng libselinux libssh2 libstdc++ libxml2 libxslt ncurses-libs nspr nss nss-softokn-freebl nss-util openldap openssl-libs pcre postgresql-libs readline sqlite xz-libs zlib
RUN bitnami-pkg unpack apache-2.4.37-1 --checksum 0be48a8445346b61820b03a8833966eb5335bdd392801b7cb7d91a5a9c50e60c
RUN bitnami-pkg unpack php-7.2.12-1 --checksum f01feec5f81fb3d9b6dd9f11c90e3d97afa6852edc8857ffe8b2a761ef38ec21
RUN bitnami-pkg unpack apache-2.4.37-20 --checksum 8c93a99ad260e59bcbe1b93a3c3391806ade2d7266cb14dea622bd7b8255afd5
RUN bitnami-pkg unpack php-7.2.12-20 --checksum f2240901648bdab8acc66c2f49aab91fbe4bf7cc49149977f58ea373712bd29e
RUN bitnami-pkg install wp-cli-2.0.1-1 --checksum 506480c5ffb3362e18dc6dbe16ed8ebd19867a8735e5259e383c2806f52e6c52
RUN bitnami-pkg unpack mysql-client-10.1.37-0 --checksum a30c54095ffb4d9180f53d925a67e4b7e11523e48b67f2d5912c20d80a703f52
RUN bitnami-pkg unpack libphp-7.2.13-0 --checksum ec59b8b2f10fb6e3dee0964636ddbed15bbdbe0c639229d0e0dd1f69168bfc08
RUN bitnami-pkg unpack wordpress-5.0.0-0 --checksum 64a682bd3759a1d2e7bb309926869806339dccc133ea088921aa9dbedd5105ca
RUN mkdir -p /opt/bitnami/apache/tmp && chmod g+rwX /opt/bitnami/apache/tmp
RUN bitnami-pkg unpack mysql-client-10.1.37-20 --checksum 68dc0a5d7237b8eeb45d742203bd255e60d1bbf96c5daf00e7b1ed2892ca98a5
RUN bitnami-pkg unpack libphp-7.2.13-20 --checksum 690e34c0f45489ff8ca43fe9e8cc67ff8b6d9a1b0ea552fea88604afbb8d7e8e
RUN bitnami-pkg unpack wordpress-5.0.0-2 --checksum 4f6475077514123cf045a512f18237db5b2f06e1300888f3762198dfa3407cbd
RUN ln -sf /dev/stdout /opt/bitnami/apache/logs/access_log
RUN ln -sf /dev/stderr /opt/bitnami/apache/logs/error_log
RUN ln -sf /dev/stdout /opt/bitnami/apache/logs/error_log
COPY rootfs /
ENV ALLOW_EMPTY_PASSWORD="no" \
APACHE_HTTPS_PORT_NUMBER="8443" \
APACHE_HTTP_PORT_NUMBER="8080" \
BITNAMI_APP_NAME="wordpress" \
BITNAMI_IMAGE_VERSION="5.0.0-rhel-7-r3" \
BITNAMI_IMAGE_VERSION="5.0.0-rhel-7-r4" \
MARIADB_HOST="mariadb" \
MARIADB_PORT_NUMBER="3306" \
MARIADB_ROOT_PASSWORD="" \
@@ -57,4 +56,4 @@ EXPOSE 8080 8443
USER 1001
ENTRYPOINT [ "/app-entrypoint.sh" ]
CMD [ "httpd", "-f", "/bitnami/apache/conf/httpd.conf", "-DFOREGROUND" ]
CMD [ "/run.sh" ]

View File

@@ -5,7 +5,7 @@
print_welcome_page
if [[ "$1" == "nami" && "$2" == "start" ]] || [[ "$1" == "httpd" ]]; then
if [[ "$1" == "nami" && "$2" == "start" ]] || [[ "$1" == "/run.sh" ]]; then
. /init.sh
nami_initialize apache php mysql-client libphp wordpress
info "Starting wordpress... "

View File

@@ -4,7 +4,7 @@
DAEMON=httpd
EXEC=$(which $DAEMON)
ARGS=$("-f" "/opt/bitnami/apache/conf/httpd.conf" "-D" "FOREGROUND")
ARGS=("-f" "/opt/bitnami/apache/conf/httpd.conf" "-D" "FOREGROUND")
# create apache tmp directory
mkdir /opt/bitnami/apache/tmp