forked from akeneo/pim-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
83 lines (80 loc) · 3.55 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
FROM debian:9-slim AS pim
MAINTAINER [email protected]
WORKDIR /home/akeneo/pim-docs/
ENV DEBIAN_FRONTEND=noninteractive
# Create environment for build with php, python, mysql and composer
RUN apt-get update && \
apt-get install -y --no-install-recommends wget lsb-release apt-transport-https ca-certificates gnupg unzip \
python python-setuptools ssh rsync && \
#
# Add source for mysql
wget -O /tmp/mysql-apt-config.deb https://dev.mysql.com/get/mysql-apt-config_0.8.7-1_all.deb && \
dpkg -i /tmp/mysql-apt-config.deb && \
#
# Add source for php
wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg && \
sh -c 'echo "deb https://packages.sury.org/php/ stretch main" > /etc/apt/sources.list.d/php.list' && \
#
# Add sphinx
wget -O /tmp/sphinx.zip https://github.com/sphinx-doc/sphinx/archive/v1.5.6.zip && \
unzip /tmp/sphinx.zip -d /tmp/ && \
cd /tmp/sphinx-1.5.6/ && \
python setup.py install && \
#
# Add youtube-sphinx extension
wget -O /tmp/sphinxcontrib.youtube.zip \
https://github.com/mickaelandrieu/sphinxcontrib.youtube/archive/master.zip && \
unzip /tmp/sphinxcontrib.youtube.zip -d /tmp/ && \
cd /tmp/sphinxcontrib.youtube-master/ && \
python setup.py install && \
#
# Add sphinx-php extension
wget -O /tmp/sphinx-php.zip \
https://github.com/fabpot/sphinx-php/archive/v1.0.10.zip && \
unzip /tmp/sphinx-php.zip -d /tmp/ && \
cd /tmp/sphinx-php-1.0.10/ && \
python setup.py install && \
#
# Download packages
apt-get update && \
apt-get install -y --no-install-recommends mysql-server php7.1-apcu php7.1-bcmath \
php7.1-cli php7.1-curl php7.1-fpm php7.1-gd php7.1-intl php7.1-mcrypt php7.1-mysql php7.1-soap php7.1-xml \
php7.1-zip php7.1-mbstring && \
#
# Configure PHP
echo "memory_limit = 1024M" >> /etc/php/7.1/cli/php.ini && \
echo "date.timezone = Etc/UTC" >> /etc/php/7.1/cli/php.ini && \
#
# Get composer
wget https://getcomposer.org/download/1.6.2/composer.phar -P /home/akeneo/pim-docs/ && \
#
# Clean
apt-get clean && apt-get --yes --quiet autoremove --purge && \
rm -rf /var/lib/apt/lists/* && \
rm -rf /tmp/* && \
rm -rf /usr/share/doc/* && \
rm -rf /usr/share/man/* && \
rm -rf /usr/share/locale/* && \
rm -rf /var/log/*
COPY build.sh /home/akeneo/pim-docs/build.sh
# Install Akeneo PIM Assets
RUN chmod +x /home/akeneo/pim-docs/build.sh && \
#
# Download curent version
wget https://github.com/akeneo/pim-community-dev/archive/2.3.zip -P /home/akeneo/pim-docs/ && \
unzip /home/akeneo/pim-docs/2.3.zip -d /home/akeneo/pim-docs/ && \
cd /home/akeneo/pim-docs/pim-community-dev-2.3/ && \
#
# Install Akeneo PIM
php -d memory_limit=3G /home/akeneo/pim-docs/composer.phar install --no-dev --no-suggest --ignore-platform-reqs && \
service mysql start && \
mysql -u root -e "CREATE DATABASE akeneo_pim" && \
mysql -u root -e "GRANT ALL PRIVILEGES ON akeneo_pim.* TO akeneo_pim@localhost IDENTIFIED BY 'akeneo_pim'" && \
cd /home/akeneo/pim-docs/pim-community-dev-2.3/ && php bin/console doctrine:schema:create --env=prod && \
cd /home/akeneo/pim-docs/pim-community-dev-2.3/ && php bin/console pim:installer:assets --env=prod && \
service mysql stop && \
#
# Clean
rm -rf /root/.composer/cache && \
cd /home/akeneo/pim-docs/pim-community-dev-2.3/ && ls | grep -v "vendor\|web" | xargs rm -rf && \
rm /var/lib/mysql/ibdata1 /var/lib/mysql/ib_logfile1 /var/lib/mysql/ib_logfile0