mirror of
https://github.com/bitnami/containers.git
synced 2026-03-08 02:37:20 +08:00
This release contains more than 20 functional fixes and enhancements, and one security enhancement. The highlights in this release are: - Removal of vulnerability with the Zend framework Zend_Mail library - Updates to the catalog, payment, and sales modules
30 lines
1.5 KiB
Docker
30 lines
1.5 KiB
Docker
FROM gcr.io/stacksmith-images/minideb:jessie-r9
|
|
|
|
MAINTAINER Bitnami <containers@bitnami.com>
|
|
|
|
ENV BITNAMI_APP_NAME=magento \
|
|
BITNAMI_IMAGE_VERSION=2.1.4-r0 \
|
|
PATH=/opt/bitnami/php/bin:/opt/bitnami/apache/bin:/opt/bitnami/magento/bin/:$PATH
|
|
|
|
# System packages required
|
|
RUN install_packages libssl1.0.0 libaprutil1 libapr1 libc6 libuuid1 libexpat1 libpcre3 libldap-2.4-2 libsasl2-2 libgnutls-deb0-28 zlib1g libp11-kit0 libtasn1-6 libnettle4 libhogweed2 libgmp10 libffi6 libxslt1.1 libtidy-0.99-0 libreadline6 libncurses5 libtinfo5 libmcrypt4 libstdc++6 libpng12-0 libjpeg62-turbo libbz2-1.0 libxml2 libcurl3 libfreetype6 libicu52 libgcc1 libgcrypt20 liblzma5 libidn11 librtmp1 libssh2-1 libgssapi-krb5-2 libkrb5-3 libk5crypto3 libcomerr2 libgpg-error0 libkrb5support0 libkeyutils1 libsybdb5 libpq5
|
|
|
|
# Additional modules required
|
|
RUN bitnami-pkg unpack apache-2.4.25-0 --checksum 8b46af7d737772d7d301da8b30a2770b7e549674e33b8a5b07480f53c39f5c3f
|
|
RUN bitnami-pkg unpack php-7.0.15-4 --checksum 855e77fc7b87d1b263b08fdc96518c6fc301531923974917335f1cb8539d2a68
|
|
RUN bitnami-pkg install libphp-7.0.15-1 --checksum b65f40603838865d1974f071119cda9d63c80d9c14f146707dcd88940e215077
|
|
RUN bitnami-pkg install mysql-client-10.1.21-0 --checksum 8e868a3e46bfa59f3fb4e1aae22fd9a95fd656c020614a64706106ba2eba224e
|
|
|
|
# Install magento
|
|
RUN bitnami-pkg unpack magento-2.1.4-0 --checksum 6a21ef346ed6e1958d9d76e6def8142002a03a3d44bf641ff213a3635a5fe14f
|
|
|
|
COPY rootfs /
|
|
|
|
VOLUME ["/bitnami/magento", "/bitnami/apache", "/bitnami/php"]
|
|
|
|
EXPOSE 80 443
|
|
|
|
ENTRYPOINT ["/app-entrypoint.sh"]
|
|
|
|
CMD ["/init.sh"]
|