Tag
htwk/l2p-ki-server:develop
Created
2021-11-15 13:07:59 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:b380bbd43752f83945df8b5d1074fef8dd044820e7d3aef33b655a2483e030c7 25.9 MB
  • 002 sha256:81c44d634db0b14bf8679c170f6add62868c6df5e69e0b63c8fc3a247859d20c 2.64 MB
  • 003 sha256:9667f949f66d2ac5ec4830972842cd04eebbb378cc8521bafdb3961c7a2cda8d 10.2 MB
  • 004 sha256:3e9f5c1d871efc0d134593e1022481d0f9c14d9d6c14102b7fa821c72781d4dc 233 Bytes
  • 005 sha256:b181e9f84c7445a49dc8e0bfe46d33c7a3e942e773f3aa2fa856e69ea53a3e49 2.52 MB
  • 006 sha256:7fe418ec53a47870582c749e1735d6b5cd902fe226c6427d7821dc67a968249b 126 Bytes
  • 007 sha256:810434068699de48c8805ce64f39882b71d5d09151b6c5377aa3c7767be13b75 212 Bytes
  • 008 sha256:0a45c18f7c564aff14e89e3535f5214e95aba6e6f120dc43de893d57d30bb2fa 33.7 MB
  • 009 sha256:8f3d465ae3bad329bb2d6c02c2e9ccbaddc82592bac76557110aad8890f645fd 816 Bytes
  • 010 sha256:9a73d7db692fb615c1cb3baa7790d7004ba1e3b8db3b118eb6a3f917e13ac39c 1.41 KB
  • 011 sha256:c996d9e8caebf8a5a5245e8290f8ca8f171c8985051985a9dd48eb244eced63b 1.51 KB
  • 012 sha256:48af623d8957e6c38574b9573219115f1a859388834105e10d238595ae160b21 563 Bytes
  • 013 sha256:5ca4616578ac8426d0896cfcbe9b72ffa37dcc7511be3bbd43970c8f70b85790 65.1 KB
  • 014 sha256:55f54ccaa1e31024c3330aeee909fa21ade4241070075ba64bacc8bdf041e368 868 Bytes
  • 015 sha256:1735a4e941c71425dab3d38df5c3b9bd88afde2152a93ce0616d58b6433bfa41 873 Bytes
  • 016 sha256:991ae336f115d82d1c9c8bf2f28b8f2058b6a027524929be7562cfe4837b8224 290 Bytes
  • 017 sha256:6ba3d572cf45160fb2aa0197cd2d2de3fa7c210568109a7eac379db079cc30e9 205 Bytes
History
[2021-10-12 01:21:05 UTC] /bin/sh -c #(nop) ADD file:910392427fdf089bc26b64d6dc450ff3d020c7c1a474d85b2f9298134d0007bd in / [2021-10-12 01:21:05 UTC] /bin/sh -c #(nop) CMD ["bash"] [2021-10-12 02:27:09 UTC] /bin/sh -c #(nop) ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin [2021-10-12 02:27:09 UTC] /bin/sh -c #(nop) ENV LANG=C.UTF-8 [2021-10-12 03:06:58 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-10-12 03:06:59 UTC] /bin/sh -c #(nop) ENV GPG_KEY=E3FF2839C048B25C084DEBE9B26995E310250568 [2021-10-12 03:06:59 UTC] /bin/sh -c #(nop) ENV PYTHON_VERSION=3.8.12 [2021-10-12 03:17:13 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-10-12 03:17:14 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-10-12 03:17:14 UTC] /bin/sh -c #(nop) ENV PYTHON_PIP_VERSION=21.2.4 [2021-10-12 03:17:14 UTC] /bin/sh -c #(nop) ENV PYTHON_SETUPTOOLS_VERSION=57.5.0 [2021-10-26 23:50:17 UTC] /bin/sh -c #(nop) ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/3cb8888cc2869620f57d5d2da64da38f516078c7/public/get-pip.py [2021-10-26 23:50:17 UTC] /bin/sh -c #(nop) ENV PYTHON_GET_PIP_SHA256=c518250e91a70d7b20cceb15272209a4ded2a0c263ae5776f129e0d9b5674309 [2021-10-26 23:50:29 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-10-26 23:50:29 UTC] /bin/sh -c #(nop) CMD ["python3"] [2021-11-15 13:07:36 UTC] LABEL maintainer=Alexander Pögelt [2021-11-15 13:07:36 UTC] WORKDIR /app [2021-11-15 13:07:37 UTC] COPY requirements.txt requirements.txt # buildkit [2021-11-15 13:07:58 UTC] RUN /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/ # buildkit [2021-11-15 13:07:58 UTC] COPY dbHandler/ /app/dbHandler # buildkit [2021-11-15 13:07:58 UTC] COPY mqHandler/ /app/mqHandler # buildkit [2021-11-15 13:07:58 UTC] COPY serverInterface/ /app/serverInterface # buildkit [2021-11-15 13:07:58 UTC] COPY serviceHandler/ /app/serviceHandler # buildkit [2021-11-15 13:07:58 UTC] COPY static/ /app/static/ # buildkit [2021-11-15 13:07:59 UTC] COPY templates/ /app/templates/ # buildkit [2021-11-15 13:07:59 UTC] COPY app.py /app # buildkit [2021-11-15 13:07:59 UTC] COPY layers_properties.py /app/layers_properties.py # buildkit [2021-11-15 13:07:59 UTC] COPY rabbitmq_properties.py /app/rabbitmq_properties.py # buildkit [2021-11-15 13:07:59 UTC] EXPOSE map[5000/tcp:{}] [2021-11-15 13:07:59 UTC] ENTRYPOINT ["python3" "-m" "flask" "run" "--host=0.0.0.0"]