forked from swoole/docker-swoole
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile.twig
43 lines (37 loc) · 1.48 KB
/
Dockerfile.twig
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
FROM {{ image_name }}:{{ php_version }}-cli
ENV DEBIAN_FRONTEND noninteractive
ENV TERM xterm-color
ARG DEV_MODE
ENV DEV_MODE $DEV_MODE
COPY ./rootfilesystem/ /
RUN \
curl -sfL http://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer && \
chmod +x /usr/bin/composer && \
composer self-update {{ composer.version }} && \
apt-get update && \
apt-get install -y \
{%~ if inotify == true %}
inotify-tools \
{%~ endif %}
libssl-dev \
supervisor \
unzip \
zlib1g-dev \
--no-install-recommends && \
{%~ if php_extensions is not empty %}
pecl update-channels && \
{%~ for name, data in php_extensions %}
pecl install {{ name }}{% if data.version is not empty %}-{{ data.version }}{% endif %} && \
{%~ endfor %}
{%~ for name, data in php_extensions %}
{%~ if data.enabled %}
docker-php-ext-enable {{ name }} && \
{%~ endif %}
{%~ endfor %}
{%~ endif %}
install-swoole.sh {% if swoole_version == "latest" %}master{% else %}{{ swoole_version }}{% endif %} && \
mkdir -p /var/log/supervisor && \
rm -rf /var/lib/apt/lists/* $HOME/.composer/*-old.phar /usr/bin/qemu-*-static
ENTRYPOINT ["/entrypoint.sh"]
CMD []
WORKDIR "/var/www/"