mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-12-24 14:31:51 +01:00
update magento
This commit is contained in:
@@ -3,50 +3,70 @@
|
||||
#
|
||||
|
||||
FROM php:5.6-apache
|
||||
MAINTAINER kev<noreply@easypi.info>
|
||||
MAINTAINER kev <noreply@easypi.info>
|
||||
|
||||
RUN a2enmod rewrite
|
||||
|
||||
RUN set -xe \
|
||||
&& apt-get update \
|
||||
&& apt-get install -y libcurl3-dev \
|
||||
libfreetype6 \
|
||||
libfreetype6-dev \
|
||||
libjpeg62-turbo \
|
||||
&& apt-get install -y build-essential \
|
||||
libcurl3 \
|
||||
libcurl3-dev \
|
||||
libfreetype6 \
|
||||
libfreetype6-dev \
|
||||
libicu52 \
|
||||
libicu-dev \
|
||||
libjpeg62-turbo \
|
||||
libjpeg62-turbo-dev \
|
||||
libmcrypt-dev \
|
||||
libmcrypt4 \
|
||||
libpng12-dev \
|
||||
libpng12-dev \
|
||||
libxslt-dev \
|
||||
zziplib-bin \
|
||||
zlib1g-dev \
|
||||
libicu-dev \
|
||||
g++ \
|
||||
libmcrypt4 \
|
||||
libmcrypt-dev \
|
||||
libpng12-0 \
|
||||
libpng12-dev \
|
||||
libxslt1.1 \
|
||||
libxslt1-dev \
|
||||
zlib1g \
|
||||
zlib1g-dev \
|
||||
zziplib-bin \
|
||||
&& docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr \
|
||||
&& docker-php-ext-configure intl \
|
||||
&& docker-php-ext-install gd mcrypt mbstring pdo_mysql \
|
||||
&& docker-php-ext-install intl \
|
||||
&& docker-php-ext-install xsl \
|
||||
&& docker-php-ext-install zip \
|
||||
&& apt-get purge -y --auto-remove libcurl3-dev \
|
||||
libfreetype6-dev \
|
||||
&& docker-php-ext-install gd \
|
||||
intl \
|
||||
mbstring \
|
||||
mcrypt \
|
||||
pdo_mysql \
|
||||
xsl \
|
||||
zip \
|
||||
&& curl -sSL https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer \
|
||||
&& apt-get purge -y --auto-remove build-essential \
|
||||
libcurl3-dev \
|
||||
libfreetype6-dev \
|
||||
libicu-dev \
|
||||
libjpeg62-turbo-dev \
|
||||
libmcrypt-dev \
|
||||
libpng12-dev \
|
||||
libpng12-dev \
|
||||
libmcrypt-dev \
|
||||
libpng12-dev \
|
||||
libxslt1-dev \
|
||||
zlib1g-dev \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
RUN echo 'always_populate_raw_post_data = -1\nmax_execution_time = 240\nmax_input_vars = 1500\nupload_max_filesize = 32M\npost_max_size = 32M' > /usr/local/etc/php/conf.d/typo3.ini
|
||||
WORKDIR /usr/src
|
||||
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
|
||||
|
||||
RUN { \
|
||||
echo 'always_populate_raw_post_data = -1';\
|
||||
echo 'max_execution_time = 240'; \
|
||||
echo 'max_input_vars = 1500'; \
|
||||
echo 'upload_max_filesize = 32M'; \
|
||||
echo 'post_max_size = 32M'; \
|
||||
} > /usr/local/etc/php/conf.d/typo3.ini
|
||||
|
||||
|
||||
WORKDIR /var/www/html
|
||||
|
||||
ENV MAGENTO_VER 2.1.0
|
||||
ENV MAGENTO_MD5 aab11e6b443be7179410b195b2099819
|
||||
ENV MAGENTO_URL https://github.com/magento/magento2/archive/$MAGENTO_VER.tar.gz
|
||||
ENV MAGENTO_FILE magento.tar.gz
|
||||
RUN curl -sSL ${MAGENTO_URL} -o ${MAGENTO_FILE} \
|
||||
|
||||
RUN set -xe \
|
||||
&& curl -sSL ${MAGENTO_URL} -o ${MAGENTO_FILE} \
|
||||
&& echo "${MAGENTO_MD5} ${MAGENTO_FILE}" | md5sum -c \
|
||||
&& tar xzf ${MAGENTO_FILE} --strip 1 \
|
||||
&& rm ${MAGENTO_FILE} \
|
||||
&& chown -R www-data:www-data . \
|
||||
&& /etc/init.d/apache2 restart \
|
||||
&& tar xzf ${MAGENTO_FILE} --strip 1 \
|
||||
&& rm ${MAGENTO_FILE} \
|
||||
&& chown -R www-data:www-data . \
|
||||
&& composer install
|
||||
|
||||
Reference in New Issue
Block a user