1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-07-01 03:01:29 +00:00
dockerfiles/opencart/Dockerfile

33 lines
964 B
Docker
Raw Normal View History

2015-05-27 08:39:04 +00:00
#
# Dockerfile for opencart
#
FROM php:5.6-apache
2016-06-06 16:51:39 +00:00
MAINTAINER kev <noreply@easypi.info>
2015-05-27 08:39:04 +00:00
RUN a2enmod rewrite
2016-03-08 10:05:24 +00:00
RUN set -xe \
&& apt-get update \
&& apt-get install -y libpng12-dev libjpeg-dev libmcrypt-dev \
2015-05-27 09:45:11 +00:00
&& rm -rf /var/lib/apt/lists/* \
&& docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr \
&& docker-php-ext-install gd mcrypt mbstring mysqli zip
2015-05-27 08:39:04 +00:00
WORKDIR /var/www/html
2016-03-08 10:05:24 +00:00
ENV OPENCART_VER 2.2.0.0
ENV OPENCART_MD5 a9219f14b3483f867ea48218a0bf215d
2015-05-27 08:39:04 +00:00
ENV OPENCART_URL https://github.com/opencart/opencart/archive/${OPENCART_VER}.tar.gz
ENV OPENCART_FILE opencart.tar.gz
2016-03-08 10:05:24 +00:00
RUN set -xe \
&& curl -sSL ${OPENCART_URL} -o ${OPENCART_FILE} \
&& echo "${OPENCART_MD5} ${OPENCART_FILE}" | md5sum -c \
2015-05-27 11:08:27 +00:00
&& tar xzf ${OPENCART_FILE} --strip 2 --wildcards '*/upload/' \
2015-05-27 09:45:11 +00:00
&& mv config-dist.php config.php \
&& mv admin/config-dist.php admin/config.php \
&& rm ${OPENCART_FILE} \
&& chown -R www-data:www-data .
2015-05-27 08:39:04 +00:00