Tag
htwk/kim-mood:main
Created
2021-11-18 14:45:37 UTC
Architecture
linux / amd64
Content Digest
Pull Command
Labels
  • maintainer
    Alexander Pögelt
ENV
  • PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
  • LANG=C.UTF-8
  • GPG_KEY=E3FF2839C048B25C084DEBE9B26995E310250568
  • PYTHON_VERSION=3.8.12
  • PYTHON_PIP_VERSION=21.2.4
  • PYTHON_SETUPTOOLS_VERSION=57.5.0
  • PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/3cb8888cc2869620f57d5d2da64da38f516078c7/public/get-pip.py
  • PYTHON_GET_PIP_SHA256=c518250e91a70d7b20cceb15272209a4ded2a0c263ae5776f129e0d9b5674309
Layers
  • 001 sha256:a10c77af261312e7c92bcc184f2d1726175ff7f142e44b01c5779cd79348b9fd 25.9 MB
  • 002 sha256:811275ca69b83f444eddce72d9b9547d53ae24a9f2272a4d2e25939f93f0da26 2.64 MB
  • 003 sha256:a6e65fb20e699cf560eb97d5162d1c78b0170167cb6dc0ff93bafa22b0180c77 10.2 MB
  • 004 sha256:fc5582d0981c164d3475093178c4fedd11852528929a479213d584a383e35725 233 Bytes
  • 005 sha256:9c7a8f0f8e5834adeaaac72d79dd855a35359ae54c56045b70a992e64223d32a 2.51 MB
  • 006 sha256:f16f195d178a1ce9a666fbbf962532769496d39a75dc163f30b2e4adc4fe0e9d 132 Bytes
  • 007 sha256:487e9bb2ab6cc6f8c582dc090a3cc9fd7c9130169a947f0153ac06d19fcc2f24 223 Bytes
  • 008 sha256:6c34a997518bd58de6ff224cdb8f6524d3b3e2607b26d667df8ee9572929e80c 358 MB
  • 009 sha256:1ed6b7f0e8057317b433ead15a1c2493124ef8f917286a14634907dba0b4f32f 944 Bytes
  • 010 sha256:7507e6ddcb936e2ac7d67906684bb8da12bf9cc6177396df8b79fc4d7708a7b0 1.63 KB
  • 011 sha256:076501e3f7c7b3a25a2a86069b99b3cf4c85e752dd2bcb9378eed49b7a2e9a4b 1.39 KB
  • 012 sha256:5787a83c72ed39bb06d05db227c3535082125c8e4e476bad3eef7d42091c389c 224 Bytes
  • 013 sha256:8bbbf70a50a2733f7360d11556a1776b8d0f412668304c78fe279fbab1d99e71 264 Bytes
  • 014 sha256:cad9528599514620353de576e86ef9abcae6a7b478e0fd8be392d56b6352264d 235 Bytes
  • 015 sha256:1ccbff5b7e70efdd8d2788586e0b74caa2ff69198f78450be440eee04e80b1e0 326 Bytes
  • 016 sha256:f6f6750e989711581181ba76b21d406d0792ef27f50267266e07e5a617c3dea8 180 Bytes
History
[2021-11-17 02:21:02 UTC] /bin/sh -c #(nop) ADD file:3c54ad257f2e04f7294ce879b884820cf4726c8e93ec548172825963e40c79ad in / [2021-11-17 02:21:02 UTC] /bin/sh -c #(nop) CMD ["bash"] [2021-11-17 15:58:11 UTC] /bin/sh -c #(nop) ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin [2021-11-17 15:58:11 UTC] /bin/sh -c #(nop) ENV LANG=C.UTF-8 [2021-11-17 17:18:09 UTC] /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates netbase ; rm -rf /var/lib/apt/lists/* [2021-11-17 17:18:09 UTC] /bin/sh -c #(nop) ENV GPG_KEY=E3FF2839C048B25C084DEBE9B26995E310250568 [2021-11-17 17:18:09 UTC] /bin/sh -c #(nop) ENV PYTHON_VERSION=3.8.12 [2021-11-17 17:27:16 UTC] /bin/sh -c set -ex && savedAptMark="$(apt-mark showmanual)" && apt-get update && apt-get install -y --no-install-recommends dpkg-dev gcc libbluetooth-dev libbz2-dev libc6-dev libexpat1-dev libffi-dev libgdbm-dev liblzma-dev libncursesw5-dev libreadline-dev libsqlite3-dev libssl-dev make tk-dev uuid-dev wget xz-utils zlib1g-dev $(command -v gpg > /dev/null || echo 'gnupg dirmngr') && wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" && wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc" && export GNUPGHOME="$(mktemp -d)" && gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$GPG_KEY" && gpg --batch --verify python.tar.xz.asc python.tar.xz && { command -v gpgconf > /dev/null && gpgconf --kill all || :; } && rm -rf "$GNUPGHOME" python.tar.xz.asc && mkdir -p /usr/src/python && tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz && rm python.tar.xz && cd /usr/src/python && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && ./configure --build="$gnuArch" --enable-loadable-sqlite-extensions --enable-optimizations --enable-option-checking=fatal --enable-shared --with-system-expat --with-system-ffi --without-ensurepip && make -j "$(nproc)" LDFLAGS="-Wl,--strip-all" && make install && rm -rf /usr/src/python && find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' -o -name '*.a' \) \) -o \( -type f -a -name 'wininst-*.exe' \) \) -exec rm -rf '{}' + && ldconfig && apt-mark auto '.*' > /dev/null && apt-mark manual $savedAptMark && find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false && rm -rf /var/lib/apt/lists/* && python3 --version [2021-11-17 17:27:17 UTC] /bin/sh -c cd /usr/local/bin && ln -s idle3 idle && ln -s pydoc3 pydoc && ln -s python3 python && ln -s python3-config python-config [2021-11-17 17:27:17 UTC] /bin/sh -c #(nop) ENV PYTHON_PIP_VERSION=21.2.4 [2021-11-17 17:27:17 UTC] /bin/sh -c #(nop) ENV PYTHON_SETUPTOOLS_VERSION=57.5.0 [2021-11-17 17:27:17 UTC] /bin/sh -c #(nop) ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/3cb8888cc2869620f57d5d2da64da38f516078c7/public/get-pip.py [2021-11-17 17:27:18 UTC] /bin/sh -c #(nop) ENV PYTHON_GET_PIP_SHA256=c518250e91a70d7b20cceb15272209a4ded2a0c263ae5776f129e0d9b5674309 [2021-11-17 17:27:30 UTC] /bin/sh -c set -ex; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends wget; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum --check --strict -; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; python get-pip.py --disable-pip-version-check --no-cache-dir "pip==$PYTHON_PIP_VERSION" "setuptools==$PYTHON_SETUPTOOLS_VERSION" ; pip --version; find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' +; rm -f get-pip.py [2021-11-17 17:27:30 UTC] /bin/sh -c #(nop) CMD ["python3"] [2021-11-18 14:44:36 UTC] /bin/sh -c #(nop) LABEL maintainer=Alexander Pögelt [2021-11-18 14:44:36 UTC] /bin/sh -c #(nop) WORKDIR /app [2021-11-18 14:44:36 UTC] /bin/sh -c #(nop) COPY file:a952a94a71d9d782add6bd752191583c3e9884e47a6732935e9ff0a93201643e in requirements.txt [2021-11-18 14:45:33 UTC] /bin/sh -c apt-get update && apt-get upgrade -y && apt-get install -y curl && pip3 install --upgrade pip && pip3 install -r requirements.txt && mkdir tmp/ [2021-11-18 14:45:36 UTC] /bin/sh -c #(nop) COPY dir:3d234c038048bb3aadb88e3ee2c17de527491800a7cbbf7a3f606e52571694ee in /app/dbHandler [2021-11-18 14:45:36 UTC] /bin/sh -c #(nop) COPY dir:228f24d2b81b223d00c02f182a18e5498fc4bc32cb20f579ca2d00c431c41b3d in /app/mlHandler [2021-11-18 14:45:36 UTC] /bin/sh -c #(nop) COPY dir:c473663a2f1a0175501863b7af5022109329d3bcf5087222891f16ceb948834c in /app/mqHandler [2021-11-18 14:45:36 UTC] /bin/sh -c #(nop) COPY file:fd81f4349163476a06a01c8270e9a5ff9b03e5756937a7ce3b6b25d5f21ebb56 in /app/main.py [2021-11-18 14:45:36 UTC] /bin/sh -c #(nop) COPY file:b63ee83469035c24e9422aba28ce96ed698ac860b0e955248b3d0e6b0bccb9ab in /app/influxdb_properties.py [2021-11-18 14:45:36 UTC] /bin/sh -c #(nop) COPY file:c4a4744ab2eec651973c5ea734d6a2c2c3ab4bf0284c0218ee3b524d78323cb6 in /app/rabbitmq_properties.py [2021-11-18 14:45:37 UTC] /bin/sh -c #(nop) COPY file:b5752883d2899a7ae63957cefde0ac2ee757c30525e35f25be9c6d7966c960c8 in /app/service_properties.py [2021-11-18 14:45:37 UTC] /bin/sh -c #(nop) COPY dir:05f4f42db732d2d2d470567bcd370ae036f97fcc72b39da46024f8a1cffb553f in /app/volume [2021-11-18 14:45:37 UTC] /bin/sh -c #(nop) ENTRYPOINT ["python" "main.py"]