{"architecture":"amd64","author":"DevOps \u003cdevops@jfrog.com\u003e","config":{"Hostname":"","Domainname":"","User":"jfmc","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","_BASH_GPG_KEY=7C0135FB088AAF6C66C650B9BB5869F064EA74AB","_BASH_VERSION=4.4","_BASH_PATCH_LEVEL=18","_BASH_LATEST_PATCH=23","JFMC_USER_NAME=jfmc","JFMC_USER_GROUP=jfmc","JFMC_USER_ID=1050","JFMC_USER_GROUP_ID=1050"],"Cmd":null,"ArgsEscaped":true,"Image":"sha256:5d1f84573e35b7d060a3e52cbadf47b552e863a402bde96ee7dcbf52bfb98bfb","Volumes":null,"WorkingDir":"","Entrypoint":["/entrypoint.sh"],"OnBuild":[],"Labels":null},"container":"5df1fd3e41905b0afde7c5ca5f37c17d1ea1e9e45cf83240be2a462a62e5e4cc","container_config":{"Hostname":"5df1fd3e4190","Domainname":"","User":"jfmc","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","_BASH_GPG_KEY=7C0135FB088AAF6C66C650B9BB5869F064EA74AB","_BASH_VERSION=4.4","_BASH_PATCH_LEVEL=18","_BASH_LATEST_PATCH=23","JFMC_USER_NAME=jfmc","JFMC_USER_GROUP=jfmc","JFMC_USER_ID=1050","JFMC_USER_GROUP_ID=1050"],"Cmd":["/bin/sh","-c","#(nop) ","ENTRYPOINT [\"/entrypoint.sh\"]"],"ArgsEscaped":true,"Image":"sha256:5d1f84573e35b7d060a3e52cbadf47b552e863a402bde96ee7dcbf52bfb98bfb","Volumes":null,"WorkingDir":"","Entrypoint":["/entrypoint.sh"],"OnBuild":[],"Labels":{}},"created":"2018-12-12T09:18:31.526782545Z","docker_version":"18.06.1-ce","history":[{"created":"2018-07-06T14:14:06.165546783Z","created_by":"/bin/sh -c #(nop) ADD file:25f61d70254b9807a40cd3e8d820f6a5ec0e1e596de04e325f6a33810393e95a in / "},{"created":"2018-07-06T14:14:06.393355914Z","created_by":"/bin/sh -c #(nop)  CMD [\"/bin/sh\"]","empty_layer":true},{"created":"2018-07-11T23:19:39.969135955Z","created_by":"/bin/sh -c #(nop)  ENV _BASH_GPG_KEY=7C0135FB088AAF6C66C650B9BB5869F064EA74AB","empty_layer":true},{"created":"2018-07-11T23:19:40.236636842Z","created_by":"/bin/sh -c #(nop)  ENV _BASH_VERSION=4.4","empty_layer":true},{"created":"2018-07-11T23:19:40.497051142Z","created_by":"/bin/sh -c #(nop)  ENV _BASH_PATCH_LEVEL=18","empty_layer":true},{"created":"2018-07-11T23:19:40.733264692Z","created_by":"/bin/sh -c #(nop)  ENV _BASH_LATEST_PATCH=23","empty_layer":true},{"created":"2018-07-11T23:20:42.942340776Z","created_by":"/bin/sh -c set -ex; \t\tapk add --no-cache --virtual .build-deps \t\tbison \t\tca-certificates \t\tcoreutils \t\tdpkg-dev dpkg \t\tgcc \t\tgnupg \t\tlibc-dev \t\tmake \t\tncurses-dev \t\topenssl \t\tpatch \t\ttar \t; \t\tversion=\"$_BASH_VERSION\"; \tif [ \"$_BASH_PATCH_LEVEL\" -gt 0 ]; then \t\tversion=\"$version.$_BASH_PATCH_LEVEL\"; \tfi; \twget -O bash.tar.gz \"https://ftp.gnu.org/gnu/bash/bash-$version.tar.gz\"; \twget -O bash.tar.gz.sig \"https://ftp.gnu.org/gnu/bash/bash-$version.tar.gz.sig\"; \t\tif [ \"$_BASH_LATEST_PATCH\" -gt \"$_BASH_PATCH_LEVEL\" ]; then \t\tmkdir -p bash-patches; \t\tfirst=\"$(printf '%03d' \"$(( _BASH_PATCH_LEVEL + 1 ))\")\"; \t\tlast=\"$(printf '%03d' \"$_BASH_LATEST_PATCH\")\"; \t\tfor patch in $(seq -w \"$first\" \"$last\"); do \t\t\turl=\"https://ftp.gnu.org/gnu/bash/bash-$_BASH_VERSION-patches/bash${_BASH_VERSION//./}-$patch\"; \t\t\twget -O \"bash-patches/$patch\" \"$url\"; \t\t\twget -O \"bash-patches/$patch.sig\" \"$url.sig\"; \t\tdone; \tfi; \t\texport GNUPGHOME=\"$(mktemp -d)\"; \tgpg --keyserver ha.pool.sks-keyservers.net --recv-keys \"$_BASH_GPG_KEY\"; \tgpg --batch --verify bash.tar.gz.sig bash.tar.gz; \trm bash.tar.gz.sig; \tif [ -d bash-patches ]; then \t\tfor sig in bash-patches/*.sig; do \t\t\tp=\"${sig%.sig}\"; \t\t\tgpg --batch --verify \"$sig\" \"$p\"; \t\t\trm \"$sig\"; \t\tdone; \tfi; \trm -rf \"$GNUPGHOME\"; \t\tmkdir -p /usr/src/bash; \ttar \t\t--extract \t\t--file=bash.tar.gz \t\t--strip-components=1 \t\t--directory=/usr/src/bash \t; \trm bash.tar.gz; \t\tif [ -d bash-patches ]; then \t\tfor p in bash-patches/*; do \t\t\tpatch \t\t\t\t--directory=/usr/src/bash \t\t\t\t--input=\"$(readlink -f \"$p\")\" \t\t\t\t--strip=0 \t\t\t; \t\t\trm \"$p\"; \t\tdone; \t\trmdir bash-patches; \tfi; \t\twget -O alpine-fix-jobs.patch 'https://github.com/alpinelinux/aports/raw/3239e62fb1c7968e923016358345a4dcc7e2f87d/main/bash/fix-jobs.patch'; \techo '0e1a1d0f9d1ec90188beb99e5c6c5c92a2baeb26f9d4f147b4c9e0a2b697d2d13ff3210985b8ebf849f916af1cc124f655bd026b28f37d5abd51be7b9672da9a *alpine-fix-jobs.patch' | sha512sum -c -; \tpatch --directory=/usr/src/bash --input=\"$PWD/alpine-fix-jobs.patch\" --strip=1; \trm alpine-fix-jobs.patch; \t\tcd /usr/src/bash; \tgnuArch=\"$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)\"; \tfor f in config.guess config.sub; do \t\twget -O \"support/$f\" \"https://git.savannah.gnu.org/cgit/config.git/plain/$f?id=7d3d27baf8107b630586c962c057e22149653deb\"; \tdone; \t./configure \t\t--build=\"$gnuArch\" \t\t--enable-readline \t\t--with-curses \t\t--without-bash-malloc \t|| { \t\tcat \u003e\u00262 config.log; \t\tfalse; \t}; \tmake -j \"$(nproc)\"; \tmake install; \tcd /; \trm -r /usr/src/bash; \t\trm -r \t\t/usr/local/share/doc/bash/*.html \t\t/usr/local/share/info \t\t/usr/local/share/locale \t\t/usr/local/share/man \t; \t\trunDeps=\"$( \t\tscanelf --needed --nobanner --format '%n#p' --recursive /usr/local \t\t\t| tr ',' '\\n' \t\t\t| sort -u \t\t\t| awk 'system(\"[ -e /usr/local/lib/\" $1 \" ]\") == 0 { next } { print \"so:\" $1 }' \t)\"; \tapk add --no-cache --virtual .bash-rundeps $runDeps; \tapk del .build-deps; \t\t[ \"$(which bash)\" = '/usr/local/bin/bash' ]; \tbash --version; \t[ \"$(bash -c 'echo \"${BASH_VERSION%%[^0-9.]*}\"')\" = \"$_BASH_VERSION.$_BASH_LATEST_PATCH\" ];"},{"created":"2018-07-11T23:20:43.441639235Z","created_by":"/bin/sh -c #(nop) COPY file:fdf06dbdd83ac10faaf143ecd72819fb62707a3e7d98847f450da20c672c1bf5 in /usr/local/bin/ "},{"created":"2018-07-11T23:20:43.700878415Z","created_by":"/bin/sh -c #(nop)  ENTRYPOINT [\"docker-entrypoint.sh\"]","empty_layer":true},{"created":"2018-07-11T23:20:43.956098475Z","created_by":"/bin/sh -c #(nop)  CMD [\"bash\"]","empty_layer":true},{"created":"2018-12-12T09:18:28.396339547Z","author":"DevOps \u003cdevops@jfrog.com\u003e","created_by":"/bin/sh -c #(nop)  MAINTAINER DevOps \u003cdevops@jfrog.com\u003e","empty_layer":true},{"created":"2018-12-12T09:18:28.573658287Z","author":"DevOps \u003cdevops@jfrog.com\u003e","created_by":"/bin/sh -c #(nop)  USER root","empty_layer":true},{"created":"2018-12-12T09:18:28.767871952Z","author":"DevOps \u003cdevops@jfrog.com\u003e","created_by":"/bin/sh -c #(nop)  ARG SERVICE_NAME","empty_layer":true},{"created":"2018-12-12T09:18:28.9284814Z","author":"DevOps \u003cdevops@jfrog.com\u003e","created_by":"/bin/sh -c #(nop)  ENV JFMC_USER_NAME=jfmc JFMC_USER_GROUP=jfmc JFMC_USER_ID=1050 JFMC_USER_GROUP_ID=1050","empty_layer":true},{"created":"2018-12-12T09:18:29.088262899Z","author":"DevOps \u003cdevops@jfrog.com\u003e","created_by":"/bin/sh -c #(nop)  ARG JFI_HOME=/opt/jfrog","empty_layer":true},{"created":"2018-12-12T09:18:29.247777565Z","author":"DevOps \u003cdevops@jfrog.com\u003e","created_by":"/bin/sh -c #(nop)  ARG JFIS_APP_NAME=insight-server","empty_layer":true},{"created":"2018-12-12T09:18:29.40040428Z","author":"DevOps \u003cdevops@jfrog.com\u003e","created_by":"/bin/sh -c #(nop)  ARG JFI_HOME_CORE=/opt/jfrog/insight-server","empty_layer":true},{"created":"2018-12-12T09:18:29.589921629Z","author":"DevOps \u003cdevops@jfrog.com\u003e","created_by":"/bin/sh -c #(nop) COPY file:f4ed02c9ded39d87ffa881547a08cdccdeef0b45b6a7a290bebc14bbbacc1150 in /entrypoint.sh "},{"created":"2018-12-12T09:18:29.781786466Z","author":"DevOps \u003cdevops@jfrog.com\u003e","created_by":"/bin/sh -c #(nop) COPY file:0490ce5f00cefeb9bf0d5f1a69ac9979fb5408265f77e89d31d1ce0499ab4cd9 in /etc/ssl/certs/ca-certificates.crt "},{"created":"2018-12-12T09:18:29.981277181Z","author":"DevOps \u003cdevops@jfrog.com\u003e","created_by":"/bin/sh -c #(nop) COPY dir:19bbae26ecb22dee3f93f8ca3bcf742a4e4f317c7831569722d59bf569487827 in /opt/jfrog/insight-server/_MASTER_/data "},{"created":"2018-12-12T09:18:30.233671533Z","author":"DevOps \u003cdevops@jfrog.com\u003e","created_by":"/bin/sh -c #(nop) ADD file:6fd223fa40d5e13eef20324ab99b2266c4b70afb54a6ea8690bba37252ab763a in /insight-server "},{"created":"2018-12-12T09:18:31.187916505Z","author":"DevOps \u003cdevops@jfrog.com\u003e","created_by":"|4 JFIS_APP_NAME=insight-server JFI_HOME=/opt/jfrog JFI_HOME_CORE=/opt/jfrog/insight-server SERVICE_NAME=insight-server /bin/sh -c chmod +x /entrypoint.sh     \u0026\u0026 mkdir -p ${JFI_HOME_CORE}/_MASTER_/data/contexts/security     \u0026\u0026 addgroup -g ${JFMC_USER_GROUP_ID} ${JFMC_USER_GROUP}     \u0026\u0026 adduser -D -u ${JFMC_USER_ID} -G ${JFMC_USER_NAME} ${JFMC_USER_GROUP}     \u0026\u0026 chown -R ${JFMC_USER_NAME}:${JFMC_USER_GROUP} ${JFI_HOME} /entrypoint.sh /$SERVICE_NAME"},{"created":"2018-12-12T09:18:31.369597973Z","author":"DevOps \u003cdevops@jfrog.com\u003e","created_by":"/bin/sh -c #(nop)  USER jfmc","empty_layer":true},{"created":"2018-12-12T09:18:31.526782545Z","author":"DevOps \u003cdevops@jfrog.com\u003e","created_by":"/bin/sh -c #(nop)  ENTRYPOINT [\"/entrypoint.sh\"]","empty_layer":true}],"os":"linux","rootfs":{"type":"layers","diff_ids":["sha256:73046094a9b835e443af1a9d736fcfc11a994107500e474d0abf399499ed280c","sha256:1ffff1fbda339f62e129305750fd1113d22e924f4bc1452d3fe90e9caece7e4e","sha256:09a361b283c543b71b696789622653d017f445b1e5cd2e53be22bb401f1f7cd3","sha256:b08724c6125bc023c83173d14837bbede19ddffe8d5fbbad3f28992fb85d396f","sha256:093fab2b0684b5f2c230cef7f8e77824a35c6b1a0d24802734472e31cd2656ba","sha256:92726dbb0e1b9145f1bba5e1b86505d9bea6c1391ae814f026f17ed7637b22f3","sha256:d0709333233bc559c2d4e2e0d9b5670a1a3d817bc542425b37c7766b2d7b3a5c","sha256:5df538b59c0aac177fcb6c3105865946797bc9f92661dc08a0e104c52d100eac"]}}