-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
67 lines (54 loc) · 1.67 KB
/
Copy pathDockerfile
File metadata and controls
67 lines (54 loc) · 1.67 KB
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
################################################################################
# Base image
################################################################################
FROM php:5.6-apache
################################################################################
# Build instructions
################################################################################
# Install packages
RUN apt-get update && apt-get install -my \
supervisor \
curl \
wget \
mcrypt \
php5-curl \
php5-gd \
php5-memcached \
php5-mysqlnd \
php5-mcrypt \
php5-sqlite \
php5-xdebug \
php5-redis \
openssh-server \
libmcrypt-dev \
libpng12-dev \
libbz2-dev \
php-pear \
curl \
git
RUN mkdir -p /var/lock/apache2 /var/run/apache2 /var/run/sshd /var/log/supervisor
RUN a2enmod rewrite ;\
a2enmod expires ;\
a2enmod headers ;\
a2enmod deflate ;\
a2enmod remoteip ;
RUN docker-php-ext-install \
zip \
bz2 \
iconv \
mcrypt \
mbstring
# Add configuration files
COPY conf/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
################################################################################
# Volumes
################################################################################
VOLUME ["/var/www/html", "/etc/apache2/sites-enabled"]
################################################################################
# Ports
################################################################################
EXPOSE 80 443
################################################################################
# Entrypoint
################################################################################
CMD /usr/bin/supervisord