-
Notifications
You must be signed in to change notification settings - Fork 23
/
Dockerfile
101 lines (81 loc) · 3.67 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
FROM ubuntu:latest
MAINTAINER Muhammad Surya Ihsanuddin<[email protected]>
ENV DEBIAN_FRONTEND noninteractive
RUN sed -i 's/http:\/\/archive.ubuntu.com/http:\/\/buaya.klas.or.id/g' /etc/apt/sources.list
# Install Software
RUN apt-get update && apt-get upgrade -y
RUN apt-get install nginx-full supervisor vim varnish -y
RUN apt-get install software-properties-common python-software-properties -y
RUN apt-get install curl ca-certificates -y
RUN touch /etc/apt/sources.list.d/ondrej-php.list
RUN echo "deb http://ppa.launchpad.net/ondrej/php/ubuntu xenial main" >> /etc/apt/sources.list.d/ondrej-php.list
RUN echo "deb-src http://ppa.launchpad.net/ondrej/php/ubuntu xenial main" >> /etc/apt/sources.list.d/ondrej-php.list
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 4F4EA0AAE5267A6C
RUN apt-get update
RUN apt-get install php7.1 php7.1-cli php7.1-curl php7.1-intl php7.1-mbstring php7.1-xml php7.1-zip \
php7.1-bcmath php7.1-cli php7.1-fpm php7.1-imap php7.1-json php7.1-mcrypt php7.1-opcache php7.1-apcu php7.1-xmlrpc \
php7.1-bz2 php7.1-common php7.1-gd php7.1-ldap php7.1-mysql php7.1-readline php7.1-soap php7.1-tidy php7.1-xsl php-mongodb php-apcu -y
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
RUN apt-get remove --purge -y software-properties-common python-software-properties && \
apt-get autoremove -y && \
apt-get clean && \
apt-get autoclean
RUN rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/* ~/.composer
# Setup Environment
ENV NGINX_WEBROOT /bigerp/web
ENV SYMFONY_ENV dev
ENV VARNISH_CONFIG /etc/varnish/default.vcl
ENV CACHE_SIZE 512m
ENV VARNISHD_PARAMS -p default_ttl=3600 -p default_grace=3600
ENV VARNISH_PORT 80
ENV BACKEND_HOST localhost
ENV BACKEND_PORT 8080
# Supervisor Configuration
ADD docker/supervisor/supervisor.conf /etc/supervisord.conf
# Nginx Configuration
ADD docker/nginx/sites-enabled/site.conf /etc/nginx/conf.d/default.conf
ADD docker/nginx/sites-enabled/php-fpm.conf /etc/nginx/conf.d/php-fpm.conf
ADD docker/nginx/nginx.conf /etc/nginx/nginx.conf
ADD docker/nginx/fastcgi_cache /etc/nginx/fastcgi_cache
ADD docker/nginx/static_files.conf /etc/nginx/static_files.conf
ADD docker/nginx/logs/site.access.log /var/log/nginx/site.access.log
ADD docker/nginx/logs/site.error.log /var/log/nginx/site.error.log
ADD docker/nginx/etc/sysctl.conf /etc/sysctl.conf
ADD docker/nginx/etc/security/limits.conf /etc/security/limits.conf
RUN mkdir -p /tmp/nginx/cache
RUN chmod 777 -R /tmp/nginx
RUN chmod 777 /var/log/nginx/site.access.log
RUN chmod 777 /var/log/nginx/site.error.log
# PHP Configuration
ADD docker/php/php.ini /etc/php/7.1/fpm/php.ini
ADD docker/php/php.ini /etc/php/7.1/cli/php.ini
ADD docker/php/php-fpm.conf /etc/php/7.1/fpm/php-fpm.conf
RUN mkdir /run/php
RUN touch /run/php/php7.1-fpm.sock
RUN chmod 777 /run/php/php7.1-fpm.sock
# Varnish Configuration
ADD docker/varnish/default.vcl /etc/varnish/default.vcl
# Setup Application
ENV COMPOSER_ALLOW_SUPERUSER 1
RUN composer global require "hirak/prestissimo:^0.3" "alcaeus/mongo-php-adapter:^1.0" --prefer-dist --no-progress --no-suggest --optimize-autoloader --classmap-authoritative \
&& composer clear-cache
WORKDIR /bigerp
COPY composer.json ./
COPY composer.lock ./
RUN mkdir -p \
var/cache \
var/logs \
var/sessions \
&& chmod 777 -R var/ \
&& composer install --prefer-dist --no-autoloader --no-scripts --no-progress --no-suggest \
&& composer clear-cache
COPY app app/
COPY bin bin/
COPY web web/
COPY src src/
RUN composer dump-autoload --optimize --classmap-authoritative
# Here we go
ADD docker/start.sh /start.sh
RUN chmod +x /start.sh
EXPOSE 443 80
CMD ["/start.sh"]