-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
85 lines (73 loc) · 2.37 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
FROM php:8.1-apache
######################################
# Install and configure dependencies #
######################################
RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y \
bzip2 \
curl \
fontconfig \
g++ \
git \
gnupg \
libonig-dev \
libfreetype6 \
libicu-dev \
libjpeg-dev \
libpcre3-dev \
libpng-dev \
libzip-dev \
mariadb-client \
postgresql-13 \
postgresql-server-dev-all \
rsync \
unzip \
zip \
&& rm -rf /var/lib/apt/lists/* \
&& docker-php-ext-install exif \
&& docker-php-ext-configure gd --with-jpeg \
&& docker-php-ext-install gd \
&& docker-php-ext-install intl \
&& docker-php-ext-install mbstring \
&& docker-php-ext-install mysqli \
&& docker-php-ext-install pdo_mysql \
&& docker-php-ext-install pdo_pgsql \
&& docker-php-ext-configure zip \
&& docker-php-ext-install zip \
&& a2enmod rewrite \
# Install Composer
&& curl -sS https://getcomposer.org/installer | php \
&& mv composer.phar /usr/local/bin/composer \
# Install NPM
&& curl -sL https://deb.nodesource.com/setup_16.x | bash - \
&& apt install -y nodejs \
# Install Grunt, Gulp
&& npm install --location=global \
npm \
bower \
grunt-cli \
gulp-cli
####################
# Add config files #
####################
COPY ./php/php.ini /usr/local/etc/php/php.ini
COPY ./apache/000-default.conf /etc/apache2/sites-available/000-default.conf
COPY ./scripts/init-container.sh /root/init-container.sh
###############################
# Configure working directory #
###############################
WORKDIR /www
################
# Expose ports #
################
EXPOSE 80
#########################
# Configure stop signal #
#########################
STOPSIGNAL SIGTERM
#######
# Run #
#######
CMD bash /root/init-container.sh /www \
&& apache2-foreground