forked from oznu/docker-unms
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Dockerfile
291 lines (257 loc) · 13.1 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
FROM --platform=linux/amd64 ubnt/unms:2.4.155 as unms
FROM --platform=linux/amd64 ubnt/unms-nginx:2.4.155 as unms-nginx
FROM --platform=linux/amd64 ubnt/unms-netflow:2.4.155 as unms-netflow
FROM --platform=linux/amd64 ubnt/unms-crm:4.4.21 as unms-crm
FROM --platform=linux/amd64 ubnt/unms-siridb:2.4.155 as unms-siridb
FROM --platform=linux/amd64 ubnt/unms-postgres:2.4.155 as unms-postgres
FROM rabbitmq:3.7.28-alpine as rabbitmq
FROM node:12.18.4-alpine3.12 as node-old
FROM nico640/s6-alpine-node:16.20.0-3.17-1
ARG TARGETARCH
# base deps postgres 13, certbot
RUN set -x \
&& apk upgrade --no-cache \
&& apk add --no-cache certbot gzip bash vim dumb-init openssl libcap sudo \
pcre pcre2 yajl gettext coreutils make argon2-libs jq vips tar xz \
libzip gmp icu c-client supervisor libuv su-exec postgresql13 postgresql13-client \
postgresql13-contrib gnu-libiconv git
# start unms #
WORKDIR /home/app/unms
# copy unms app from offical image since the source code is not published at this time
COPY --from=unms /home/app/unms /home/app/unms
ENV LIBVIPS_VERSION=8.12.2
RUN apk add --no-cache --virtual .build-deps python3 g++ vips-dev glib-dev \
&& mkdir -p /tmp/src /home/app/unms/tmp && cd /tmp/src \
&& wget -q https://github.com/libvips/libvips/releases/download/v${LIBVIPS_VERSION}/vips-${LIBVIPS_VERSION}.tar.gz -O libvips.tar.gz \
&& tar -zxvf libvips.tar.gz \
&& cd /tmp/src/vips-${LIBVIPS_VERSION} && ./configure \
&& make && make install \
&& cd /home/app/unms \
&& mv node_modules/@ubnt/* tmp/ \
&& sed -i 's#"@ubnt/images": ".*"#"@ubnt/images": "file:../images"#g' tmp/ui-components/package.json \
&& sed -i 's#"@ubnt/icons": ".*"#"@ubnt/icons": "file:../icons"#g' tmp/ui-components/package.json \
&& sed -i 's#"@ubnt/icons-5": ".*"#"@ubnt/icons-5": "file:../icons-5"#g' tmp/ui-components/package.json \
&& sed -i 's#"@ubnt/icons": ".*"#"@ubnt/icons": "file:../icons"#g' tmp/link-core/package.json \
&& sed -i 's#"@ubnt/icons-5": ".*"#"@ubnt/icons-5": "file:../icons-5"#g' tmp/link-core/package.json \
&& sed -i 's#"@ubnt/ui-components": ".*"#"@ubnt/ui-components": "file:../ui-components"#g' tmp/link-core/package.json \
&& sed -i 's#"@ubnt/link-core": ".*"#"@ubnt/link-core": "file:./tmp/link-core"#g' package.json \
&& sed -i '$i,"resolutions": { "cheerio": "1.0.0-rc.5" }' package.json \
&& rm -rf node_modules \
&& CHILD_CONCURRENCY=1 yarn install --production --no-cache --ignore-engines --network-timeout 100000 \
&& yarn cache clean \
&& apk del .build-deps \
&& rm -rf /var/cache/apk/* tmp /tmp/src \
&& setcap cap_net_raw=pe /usr/local/bin/node
COPY --from=unms /usr/local/bin/docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
RUN chmod +x /usr/local/bin/docker-entrypoint.sh
# end unms #
# start unms-netflow #
WORKDIR /home/app/netflow
COPY --from=unms-netflow /home/app /home/app/netflow
COPY --from=node-old /usr/local/bin/node /home/app/netflow/node-old
RUN rm -rf node_modules \
&& apk add --no-cache --virtual .build-deps python3 g++ \
&& yarn install --frozen-lockfile --production --no-cache --ignore-engines \
&& yarn cache clean \
&& apk del .build-deps \
&& rm -rf /var/cache/apk/* \
&& rm -rf .node-gyp
# end unms-netflow #
# start unms-crm #
RUN mkdir -p /usr/src/ucrm \
&& mkdir -p /tmp/crontabs \
&& mkdir -p /usr/local/etc/php/conf.d \
&& mkdir -p /usr/local/etc/php-fpm.d \
&& mkdir -p /tmp/supervisor.d \
&& mkdir -p /tmp/supervisord
COPY --from=unms-crm --chown=911:911 /usr/src/ucrm /usr/src/ucrm
COPY --from=unms-crm --chown=911:911 /data /data
COPY --from=unms-crm /usr/local/bin/crm* /usr/local/bin/
COPY --from=unms-crm /usr/local/bin/docker* /usr/local/bin/
COPY --from=unms-crm /tmp/crontabs/server /tmp/crontabs/server
COPY --from=unms-crm /tmp/supervisor.d /tmp/supervisor.d
COPY --from=unms-crm /tmp/supervisord /tmp/supervisord
RUN grep -lr "nginx:nginx" /usr/src/ucrm/ | xargs sed -i 's/nginx:nginx/unms:unms/g' \
&& grep -lr "su-exec nginx" /usr/src/ucrm/ | xargs sed -i 's/su-exec nginx/su-exec unms/g' \
&& grep -lr "su-exec nginx" /tmp/ | xargs sed -i 's/su-exec nginx/su-exec unms/g' \
&& sed -i "s#unixUser='nginx'#unixUser='unms'#g" /usr/src/ucrm/scripts/unms_ready.sh \
&& sed -i 's#chmod -R 775 /data/log/var/log#chmod -R 777 /data/log/var/log#g' /usr/src/ucrm/scripts/dirs.sh \
&& sed -i 's#rm -rf /var/log#mv /var/log /data/log/var#g' /usr/src/ucrm/scripts/dirs.sh \
&& sed -i 's#LC_CTYPE=C tr -dc "a-zA-Z0-9" < /dev/urandom | fold -w 48 | head -n 1 || true#head /dev/urandom | tr -dc A-Za-z0-9 | head -c 48#g' \
/usr/src/ucrm/scripts/parameters.sh \
&& sed -i '/\[program:nginx]/,+10d' /tmp/supervisor.d/server.ini \
&& sed -i "s#http://localhost/%s#http://localhost:9081/%s#g" /usr/src/ucrm/src/AppBundle/Service/LocalUrlGenerator.php \
&& sed -i "s#'localhost', '127.0.0.1'#'localhost:9081', '127.0.0.1:9081'#g" /usr/src/ucrm/src/AppBundle/Util/Helpers.php \
&& sed -i "s#crm-extra-programs-enabled && run-parts /etc/periodic/daily#run-parts /etc/periodic/daily#g" /tmp/crontabs/server
# end unms-crm #
# start openresty #
ENV OPEN_RESTY_VERSION=openresty-1.21.4.2
WORKDIR /tmp/src
RUN apk add --no-cache --virtual .build-deps gcc g++ pcre-dev openssl-dev zlib-dev perl ccache \
&& export CC="ccache gcc -fdiagnostics-color=always -g3" \
&& curl -SL https://openresty.org/download/${OPEN_RESTY_VERSION}.tar.gz | tar xvz \
&& cd /tmp/src/${OPEN_RESTY_VERSION} && ./configure \
--prefix="/usr/local/openresty" \
--with-cc='ccache gcc -fdiagnostics-color=always -g3' \
--with-cc-opt="-DNGX_LUA_ABORT_AT_PANIC" \
--with-pcre-jit \
--without-http_rds_json_module \
--without-http_rds_csv_module \
--without-lua_rds_parser \
--with-stream \
--with-stream_ssl_module \
--with-stream_ssl_preread_module \
--with-http_v2_module \
--without-mail_pop3_module \
--without-mail_imap_module \
--without-mail_smtp_module \
--with-http_stub_status_module \
--with-http_realip_module \
--with-http_addition_module \
--with-http_auth_request_module \
--with-http_secure_link_module \
--with-http_random_index_module \
--with-http_gzip_static_module \
--with-http_sub_module \
--with-http_dav_module \
--with-http_flv_module \
--with-http_mp4_module \
--with-http_gunzip_module \
--with-threads \
--with-compat \
--with-luajit-xcflags='-DLUAJIT_NUMMODE=2 -DLUAJIT_ENABLE_LUA52COMPAT' \
-j$(nproc) \
&& make -j$(nproc) \
&& make install \
&& apk del .build-deps \
&& rm -rf /tmp/src /var/cache/apk/* \
&& echo "unms ALL=(ALL) NOPASSWD: /usr/local/openresty/nginx/sbin/nginx -s *" >> /etc/sudoers \
&& echo "unms ALL=(ALL) NOPASSWD: /bin/cat *" >> /etc/sudoers \
&& echo "unms ALL=(ALL) NOPASSWD:SETENV: /refresh-configuration.sh *" >> /etc/sudoers
COPY --from=unms-crm /etc/nginx/available-servers /usr/local/openresty/nginx/conf/ucrm
COPY --from=unms-postgres /usr/local/bin/migrate.sh /
COPY --from=unms-nginx /entrypoint.sh /refresh-certificate.sh /refresh-configuration.sh /openssl.cnf /ip-whitelist.sh /
COPY --from=unms-nginx /usr/local/openresty/nginx/templates /usr/local/openresty/nginx/templates
COPY --from=unms-nginx /www/public /www/public
RUN chmod +x /entrypoint.sh /refresh-certificate.sh /refresh-configuration.sh /ip-whitelist.sh /migrate.sh \
&& sed -i 's#NEW_BIN_DIR="/usr/local/bin"#NEW_BIN_DIR="/usr/bin"#g' /migrate.sh \
&& sed -i "s#-c listen_addresses=''#-c listen_addresses='' -p 50432#g" /migrate.sh \
&& sed -i "s#80#9081#g" /usr/local/openresty/nginx/conf/ucrm/ucrm.conf \
&& sed -i "s#81#9082#g" /usr/local/openresty/nginx/conf/ucrm/suspended_service.conf \
&& sed -i '/conf;/a \ \ include /usr/local/openresty/nginx/conf/ucrm/*.conf;' /usr/local/openresty/nginx/templates/nginx.conf.template \
&& grep -lr "location /nms/ " /usr/local/openresty/nginx/templates | xargs sed -i "s#location /nms/ #location /nms #g" \
&& grep -lr "location /crm/ " /usr/local/openresty/nginx/templates | xargs sed -i "s#location /crm/ #location /crm #g"
# end openresty #
# start php #
ENV PHP_VERSION=php-8.1.26
WORKDIR /tmp/src
RUN set -x \
&& apk add --no-cache --virtual .build-deps autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c gnu-libiconv-dev \
argon2-dev coreutils curl-dev libsodium-dev libxml2-dev linux-headers oniguruma-dev openssl-dev readline-dev sqlite-dev \
&& curl -SL https://www.php.net/get/${PHP_VERSION}.tar.xz/from/this/mirror -o php.tar.xz \
&& tar -xvf php.tar.xz \
&& cp php.tar.xz /usr/src \
&& export CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" \
&& export CPPFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" \
&& export LDFLAGS="-Wl,-O1 -pie" \
&& cd /tmp/src/${PHP_VERSION} && ./configure \
--with-config-file-path="/usr/local/etc/php" \
--with-config-file-scan-dir="/usr/local/etc/php/conf.d" \
--enable-option-checking=fatal \
--with-mhash \
--with-pic \
--enable-ftp \
--enable-mbstring \
--enable-mysqlnd \
--with-password-argon2 \
--with-sodium=shared \
--with-pdo-sqlite=/usr \
--with-sqlite3=/usr \
--with-curl \
--with-iconv=/usr \
--with-openssl \
--with-readline \
--with-zlib \
--disable-phpdbg \
--with-pear \
--disable-cgi \
--enable-fpm \
--with-fpm-user=www-data \
--with-fpm-group=www-data \
$([ $TARGETARCH = "arm" ] && echo "--host=arm-unknown-linux-musleabihf --disable-opcache-jit") \
&& make -j $(nproc) \
&& make install \
&& apk del .build-deps \
&& rm -rf /tmp/src /var/cache/apk/*
# end php #
# start php plugins / composer #
ENV PHP_INI_DIR=/usr/local/etc/php \
SYMFONY_ENV=prod
COPY --from=unms-crm /usr/local/etc/php/php.ini /usr/local/etc/php/
COPY --from=unms-crm /usr/local/etc/php-fpm.conf /usr/local/etc/
COPY --from=unms-crm /usr/local/etc/php-fpm.d /usr/local/etc/php-fpm.d
RUN apk add --no-cache --virtual .build-deps autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c \
bzip2-dev freetype-dev libjpeg-turbo-dev libpng-dev libwebp-dev libzip-dev gmp-dev icu-dev \
libxml2-dev postgresql-dev \
&& docker-php-source extract \
&& cd /usr/src/php \
&& pecl channel-update pecl.php.net \
&& echo '' | pecl install apcu ds \
&& docker-php-ext-enable apcu ds \
&& docker-php-ext-configure gd \
--enable-gd \
--with-freetype=/usr/include/ \
--with-webp=/usr/include/ \
--with-jpeg=/usr/include/ \
&& docker-php-ext-install -j$(nproc) bcmath bz2 exif gd gmp intl opcache \
pdo_pgsql soap sockets sysvmsg sysvsem sysvshm zip \
&& curl -sS https://getcomposer.org/installer | php -- \
--install-dir=/usr/bin --filename=composer \
&& cd /usr/src/ucrm \
&& composer install \
--classmap-authoritative \
--no-dev --no-interaction \
&& app/console assets:install --symlink web \
&& composer clear-cache \
&& rm /usr/bin/composer \
&& docker-php-source delete \
&& apk del .build-deps \
&& rm -rf /var/cache/apk/* \
&& sed -i 's#nginx#unms#g' /usr/local/etc/php-fpm.d/zz-docker.conf
# end php plugins / composer #
# start siridb #
COPY --from=unms-siridb /etc/siridb/siridb.conf /etc/siridb/siridb.conf
ENV SIRIDB_VERSION=2.0.51
RUN set -x \
&& [ $TARGETARCH = "arm" ] && export LIBCLERI_VERSION=0.12.2 || export LIBCLERI_VERSION=1.0.2 \
&& apk add --no-cache --virtual .build-deps gcc make libuv-dev musl-dev pcre2-dev yajl-dev util-linux-dev \
&& mkdir -p /tmp/src && cd /tmp/src \
&& curl -SL https://github.com/cesbit/libcleri/archive/$([[ $LIBCLERI_VERSION != 0* ]] && echo "v" )${LIBCLERI_VERSION}.tar.gz | tar xvz \
&& curl -SL https://github.com/siridb/siridb-server/archive/${SIRIDB_VERSION}.tar.gz | tar xvz \
&& cd /tmp/src/libcleri-${LIBCLERI_VERSION}/Release \
&& make all -j $(nproc) && make install \
&& cd /tmp/src/siridb-server-${SIRIDB_VERSION}/Release \
&& make clean && make -j $(nproc) && make install \
&& apk del .build-deps \
&& rm -rf /tmp/src \
&& rm -rf /var/cache/apk/*
# end siridb #
# start rabbitmq #
COPY --from=rabbitmq /var/lib/rabbitmq/ /var/lib/rabbitmq/
COPY --from=rabbitmq /etc/rabbitmq/ /etc/rabbitmq/
COPY --from=rabbitmq /opt/rabbitmq/ /opt/rabbitmq/
COPY --from=rabbitmq /usr/local/lib/erlang/ /usr/local/lib/erlang/
COPY --from=rabbitmq /usr/local/bin/ct_run /usr/local/bin/dialyzer /usr/local/bin/e* /usr/local/bin/run_erl /usr/local/bin/t* /usr/local/bin/
# end rabbitmq #
# temp fix until s6 services have been migrated to s6-rc
RUN sed -i '/sh -e/a \\export S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0' /init
WORKDIR /home/app/unms
ENV PATH=$PATH:/home/app/unms/node_modules/.bin:/opt/rabbitmq/sbin:/usr/local/openresty/bin \
QUIET_MODE=0 \
PUBLIC_HTTPS_PORT=443 \
PUBLIC_WS_PORT=443 \
HTTP_PORT=80 \
HTTPS_PORT=443
EXPOSE 80 443 2055/udp
VOLUME ["/config"]
COPY root /