Tag
tech4comp/monitoring:master
Created
2021-02-08 15:03:56 UTC
Architecture
linux / amd64
Content Digest
Pull Command
ENV
  • PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/jdk/bin
  • JAVA_VERSION_MAJOR=8
  • JAVA_VERSION_MINOR=202
  • JAVA_VERSION_BUILD=08
  • JAVA_PACKAGE=jdk
  • JAVA_JCE=standard
  • JAVA_HOME=/opt/jdk
  • GLIBC_REPO=https://github.com/sgerrand/alpine-pkg-glibc
  • GLIBC_VERSION=2.29-r0
  • LANG=en_US.UTF-8
  • NGINX_VERSION=1.10.2
  • NGX_DEVEL_KIT_VERSION=0.3.0
  • LUA_NGINX_MODULE_VERSION=0.10.13
Layers
  • 001 sha256:169185f82c45a6eb72e0ca4ee66152626e7ace92a0cbc53624fb46d0a553f0bd 2.1 MB
  • 002 sha256:ae8bc0cc0ce1d7af41b15ff5d4570f4287ba5d6ccf8532d3e6652e8596b7243a 57.5 MB
  • 003 sha256:6b47a79e975f92917719859302878240de044664f0f59df7c7befa620b2cae52 205 Bytes
  • 004 sha256:dde760899f48d3bc646fbf138ba3a3bced9e07e66cdcd788f4b7453a4e3a9f69 568 KB
  • 005 sha256:4bbc79c6ab449470badece7bc8247aa3d0dfbdeef4e3c436aeacee8f263d8c4c 13.9 MB
  • 006 sha256:fd00bd6da93c24dba0b33006534b395d21f775d508f8fee53c93cb48b0b0db4e 494 Bytes
  • 007 sha256:2c477688b7c780b4752235de6c044ae3b3756c388bd91cbdcbdfb742c9ab4444 630 Bytes
  • 008 sha256:3f19bf25d16b7f962f5abe859a1f03e66a376c62849263a95170fd7a47aaa8db 40.2 MB
  • 009 sha256:3b6f84f1893066139f95c9e65e2819bcac1012381b1d98e479cade20f2accc97 256 Bytes
  • 010 sha256:a8151a86ae4e1345f2e17a5138cde539e08290e4e6300503e32b85ad225603e1 683 Bytes
  • 011 sha256:2d637064408c3f6ecd62d386a36dca41a4c6e8ce4d3839ab7dfbf413986f418c 250 Bytes
  • 012 sha256:d3443f3e8501dd6d057d804f989d81457d2b986572ef0124aa20f887d85d503b 58.9 MB
  • 013 sha256:fea691c8dc74501b80ac25695413b01948592c9f04c280d8865071774242fbfd 79.6 MB
  • 014 sha256:715f6685fe014b98f1419b10c9aa5f69a7eb4284fbf55ddb2a6ece7d926a4903 19.1 MB
  • 015 sha256:bbed3de415ce53572110fe74ae54c90eca4a55e73693c59333c7447926e7a1d9 1.51 KB
  • 016 sha256:ab442ca8330eb8277a6a9ab736b86f2d5ae5a7ec58032969d07ab35371c7d30f 1.3 KB
History
[2019-01-30 22:19:46 UTC] /bin/sh -c #(nop) ADD file:91fb97ea3549e52e7b6e22b93a6736cf915c756f3d13348406d8ad5f1a872680 in / [2019-01-30 22:19:47 UTC] /bin/sh -c #(nop) CMD ["/bin/sh"] [2019-02-13 13:21:55 UTC] /bin/sh -c #(nop) MAINTAINER Anastas Dancha <anapsix@random.io> [2019-02-13 13:21:55 UTC] /bin/sh -c #(nop) ENV JAVA_VERSION_MAJOR=8 JAVA_VERSION_MINOR=202 JAVA_VERSION_BUILD=08 JAVA_PACKAGE=jdk JAVA_JCE=standard JAVA_HOME=/opt/jdk PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/jdk/bin GLIBC_REPO=https://github.com/sgerrand/alpine-pkg-glibc GLIBC_VERSION=2.29-r0 LANG=C.UTF-8 [2019-02-13 13:23:01 UTC] /bin/sh -c set -ex && [[ ${JAVA_VERSION_MAJOR} != 7 ]] || ( echo >&2 'Oracle no longer publishes JAVA7 packages' && exit 1 ) && apk -U upgrade && apk add libstdc++ curl ca-certificates bash && wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub && for pkg in glibc-${GLIBC_VERSION} glibc-bin-${GLIBC_VERSION} glibc-i18n-${GLIBC_VERSION}; do curl -sSL ${GLIBC_REPO}/releases/download/${GLIBC_VERSION}/${pkg}.apk -o /tmp/${pkg}.apk; done && apk add /tmp/*.apk && rm -v /tmp/*.apk && ( /usr/glibc-compat/bin/localedef --force --inputfile POSIX --charmap UTF-8 C.UTF-8 || true ) && echo "export LANG=C.UTF-8" > /etc/profile.d/locale.sh && /usr/glibc-compat/sbin/ldconfig /lib /usr/glibc-compat/lib && mkdir /opt && curl -jksSLH "Cookie: oraclelicense=accept-securebackup-cookie" -o /tmp/java.tar.gz http://download.oracle.com/otn-pub/java/jdk/${JAVA_VERSION_MAJOR}u${JAVA_VERSION_MINOR}-b${JAVA_VERSION_BUILD}/1961070e4c9b4e26a04e7f5a083f551e/${JAVA_PACKAGE}-${JAVA_VERSION_MAJOR}u${JAVA_VERSION_MINOR}-linux-x64.tar.gz && JAVA_PACKAGE_SHA256=$(curl -sSL https://www.oracle.com/webfolder/s/digest/${JAVA_VERSION_MAJOR}u${JAVA_VERSION_MINOR}checksum.html | grep -E "${JAVA_PACKAGE}-${JAVA_VERSION_MAJOR}u${JAVA_VERSION_MINOR}-linux-x64\.tar\.gz" | grep -Eo '(sha256: )[^<]+' | cut -d: -f2 | xargs) && echo "${JAVA_PACKAGE_SHA256} /tmp/java.tar.gz" > /tmp/java.tar.gz.sha256 && sha256sum -c /tmp/java.tar.gz.sha256 && gunzip /tmp/java.tar.gz && tar -C /opt -xf /tmp/java.tar && ln -s /opt/jdk1.${JAVA_VERSION_MAJOR}.0_${JAVA_VERSION_MINOR} /opt/jdk && if [ "${JAVA_JCE}" == "unlimited" ]; then echo "Installing Unlimited JCE policy" >&2 && curl -jksSLH "Cookie: oraclelicense=accept-securebackup-cookie" -o /tmp/jce_policy-${JAVA_VERSION_MAJOR}.zip http://download.oracle.com/otn-pub/java/jce/${JAVA_VERSION_MAJOR}/jce_policy-${JAVA_VERSION_MAJOR}.zip && cd /tmp && unzip /tmp/jce_policy-${JAVA_VERSION_MAJOR}.zip && cp -v /tmp/UnlimitedJCEPolicyJDK8/*.jar /opt/jdk/jre/lib/security; fi && sed -i s/#networkaddress.cache.ttl=-1/networkaddress.cache.ttl=10/ $JAVA_HOME/jre/lib/security/java.security && apk del curl glibc-i18n && rm -rf /opt/jdk/*src.zip /opt/jdk/lib/missioncontrol /opt/jdk/lib/visualvm /opt/jdk/lib/*javafx* /opt/jdk/jre/plugin /opt/jdk/jre/bin/javaws /opt/jdk/jre/bin/jjs /opt/jdk/jre/bin/orbd /opt/jdk/jre/bin/pack200 /opt/jdk/jre/bin/policytool /opt/jdk/jre/bin/rmid /opt/jdk/jre/bin/rmiregistry /opt/jdk/jre/bin/servertool /opt/jdk/jre/bin/tnameserv /opt/jdk/jre/bin/unpack200 /opt/jdk/jre/lib/javaws.jar /opt/jdk/jre/lib/deploy* /opt/jdk/jre/lib/desktop /opt/jdk/jre/lib/*javafx* /opt/jdk/jre/lib/*jfx* /opt/jdk/jre/lib/amd64/libdecora_sse.so /opt/jdk/jre/lib/amd64/libprism_*.so /opt/jdk/jre/lib/amd64/libfxplugins.so /opt/jdk/jre/lib/amd64/libglass.so /opt/jdk/jre/lib/amd64/libgstreamer-lite.so /opt/jdk/jre/lib/amd64/libjavafx*.so /opt/jdk/jre/lib/amd64/libjfx*.so /opt/jdk/jre/lib/ext/jfxrt.jar /opt/jdk/jre/lib/ext/nashorn.jar /opt/jdk/jre/lib/oblique-fonts /opt/jdk/jre/lib/plugin.jar /tmp/* /var/cache/apk/* && echo 'hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4' >> /etc/nsswitch.conf [2021-02-08 14:50:22 UTC] /bin/sh -c #(nop) MAINTAINER Alexander Neumann <neumann@dbis.rwth-aachen.de> [2021-02-08 14:50:22 UTC] /bin/sh -c #(nop) ENV LANG=en_US.UTF-8 [2021-02-08 14:50:23 UTC] /bin/sh -c sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories [2021-02-08 14:50:24 UTC] /bin/sh -c #(nop) ENV NGINX_VERSION=1.10.2 [2021-02-08 14:50:24 UTC] /bin/sh -c #(nop) ENV NGX_DEVEL_KIT_VERSION=0.3.0 [2021-02-08 14:50:24 UTC] /bin/sh -c #(nop) ENV LUA_NGINX_MODULE_VERSION=0.10.13 [2021-02-08 14:50:36 UTC] /bin/sh -c apk add --no-cache luajit [2021-02-08 14:56:40 UTC] /bin/sh -c GPG_KEYS=B0F4253373F8F6F510D42178520A9993A1C052F8 && CONFIG=" --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_stub_status_module --with-http_auth_request_module --with-http_xslt_module=dynamic --with-http_image_filter_module=dynamic --with-http_geoip_module=dynamic --with-http_perl_module=dynamic --with-threads --with-stream --with-stream_ssl_module --with-http_slice_module --with-mail --with-mail_ssl_module --with-file-aio --with-http_v2_module --with-ipv6 --with-ld-opt="-Wl,-rpath,/usr/lib" --add-module=/tmp/ngx_devel_kit-${NGX_DEVEL_KIT_VERSION} --add-module=/tmp/lua-nginx-module-${LUA_NGINX_MODULE_VERSION} " && addgroup -S nginx && adduser -D -S -h /var/cache/nginx -s /sbin/nologin -G nginx nginx && apk add --no-cache --virtual .build-deps gcc libc-dev make openssl-dev pcre-dev zlib-dev linux-headers curl gnupg libxslt-dev gd-dev geoip-dev perl-dev luajit-dev && export LUAJIT_LIB=/usr/lib && export LUAJIT_INC=/usr/include/luajit-2.1 && curl -fSL https://github.com/simpl/ngx_devel_kit/archive/v0.3.0.tar.gz -o /tmp/ndk.tar.gz && tar -xvf /tmp/ndk.tar.gz -C /tmp && curl -fSL https://github.com/openresty/lua-nginx-module/archive/v${LUA_NGINX_MODULE_VERSION}.tar.gz -o /tmp/lua-nginx.tar.gz && tar -xvf /tmp/lua-nginx.tar.gz -C /tmp && curl -fSL http://nginx.org/download/nginx-$NGINX_VERSION.tar.gz -o nginx.tar.gz && curl -fSL http://nginx.org/download/nginx-$NGINX_VERSION.tar.gz.asc -o nginx.tar.gz.asc && export GNUPGHOME="$(mktemp -d)" && gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$GPG_KEYS" && gpg --batch --verify nginx.tar.gz.asc nginx.tar.gz && rm -r "$GNUPGHOME" nginx.tar.gz.asc && mkdir -p /usr/src && tar -zxC /usr/src -f nginx.tar.gz && rm nginx.tar.gz && cd /usr/src/nginx-$NGINX_VERSION && ./configure $CONFIG --with-debug && make -j$(getconf _NPROCESSORS_ONLN) && mv objs/nginx objs/nginx-debug && mv objs/ngx_http_xslt_filter_module.so objs/ngx_http_xslt_filter_module-debug.so && mv objs/ngx_http_image_filter_module.so objs/ngx_http_image_filter_module-debug.so && mv objs/ngx_http_geoip_module.so objs/ngx_http_geoip_module-debug.so && mv objs/ngx_http_perl_module.so objs/ngx_http_perl_module-debug.so && ./configure $CONFIG && make -j$(getconf _NPROCESSORS_ONLN) && make install && rm -rf /etc/nginx/html/ && mkdir /etc/nginx/conf.d/ && mkdir -p /usr/share/nginx/html/ && install -m644 html/index.html /usr/share/nginx/html/ && install -m644 html/50x.html /usr/share/nginx/html/ && install -m755 objs/nginx-debug /usr/sbin/nginx-debug && install -m755 objs/ngx_http_xslt_filter_module-debug.so /usr/lib/nginx/modules/ngx_http_xslt_filter_module-debug.so && install -m755 objs/ngx_http_image_filter_module-debug.so /usr/lib/nginx/modules/ngx_http_image_filter_module-debug.so && install -m755 objs/ngx_http_geoip_module-debug.so /usr/lib/nginx/modules/ngx_http_geoip_module-debug.so && install -m755 objs/ngx_http_perl_module-debug.so /usr/lib/nginx/modules/ngx_http_perl_module-debug.so && ln -s ../../usr/lib/nginx/modules /etc/nginx/modules && strip /usr/sbin/nginx* && strip /usr/lib/nginx/modules/*.so && rm -rf /usr/src/nginx-$NGINX_VERSION && rm -f /tmp/ndk.tar.gz && rm -f /tmp/lua-nginx.tar.gz && rm -rf /tmp/ngx_devel_kit-${NGX_DEVEL_KIT_VERSION} && rm -rf /tmp/lua-nginx-module-${LUA_NGINX_MODULE_VERSION} && apk add --no-cache --virtual .gettext gettext && mv /usr/bin/envsubst /tmp/ && runDeps="$( scanelf --needed --nobanner /usr/sbin/nginx /usr/lib/nginx/modules/*.so /tmp/envsubst | awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }' | sort -u | xargs -r apk info --installed | sort -u )" && apk add --no-cache --virtual .nginx-rundeps $runDeps && apk del .build-deps && apk del .gettext && mv /tmp/envsubst /usr/local/bin/ && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log [2021-02-08 14:56:40 UTC] /bin/sh -c #(nop) COPY file:47b8cb76aa0f3b20ca2061dbdb62b7d991b217556aa679e059505929fbb89c38 in /etc/nginx/nginx.conf [2021-02-08 14:56:40 UTC] /bin/sh -c #(nop) COPY file:f30f663488cf49be8bb9a4d5227942440ff7f0bd56d8c8f7025116f669084648 in /etc/nginx/conf.d/default.conf [2021-02-08 14:56:40 UTC] /bin/sh -c #(nop) EXPOSE 443 80 [2021-02-08 14:58:30 UTC] /bin/sh -c apk add --update mysql mysql-client && rm -f /var/cache/apk/* [2021-02-08 14:58:31 UTC] /bin/sh -c #(nop) WORKDIR /usr/src/ [2021-02-08 14:58:31 UTC] /bin/sh -c #(nop) COPY file:594f9118a653971afd8d7d8481df9d3678f02d24b7807f42ed55e69339dd6f1f in start.sh [2021-02-08 14:58:31 UTC] /bin/sh -c #(nop) COPY dir:0f15bea5b23b2e3fcc49b3e73d1ac516ba00f16baf3eb05fc65b3839a47eddad in db [2021-02-08 14:58:32 UTC] /bin/sh -c sed -i 's/\r$//' start.sh && chmod +x start.sh [2021-02-08 15:02:02 UTC] /bin/sh -c apk add --no-cache git apache-ant [2021-02-08 15:03:35 UTC] /bin/sh -c git clone https://github.com/rwth-acis/mobsos-monitor.git [2021-02-08 15:03:54 UTC] /bin/sh -c cd mobsos-monitor && ant [2021-02-08 15:03:55 UTC] /bin/sh -c #(nop) COPY dir:0c6ed2fdcd07122f8774596316f614d3000ebc00d8da341caa4a874c9016b4de in mobsos-monitor [2021-02-08 15:03:55 UTC] /bin/sh -c addgroup -g 1000 -S www-data && adduser -u 1000 -D -S -G www-data www-data [2021-02-08 15:03:56 UTC] /bin/sh -c #(nop) CMD ["/bin/sh" "-c" "/bin/bash start.sh"]