SW

geovisio-sgblur (latest)

Published 2024-03-25 22:21:09 +00:00 by Administrator in SW/geovisio-sgblur

Installation

docker pull git.ivasoft.cz/sw/geovisio-sgblur:latest
sha256:614d2340017df38935698983e245d6a61a1138f71e854c0014e3208482e764e7

Image Layers

ADD file:b86ae1c7ca3586d8feedcd9ff1b2b1e8ab872caf6587618f1da689045a5d7ae4 in /
CMD ["bash"]
ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
ENV LANG=C.UTF-8
RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates netbase tzdata ; rm -rf /var/lib/apt/lists/* # buildkit
ENV GPG_KEY=E3FF2839C048B25C084DEBE9B26995E310250568
ENV PYTHON_VERSION=3.10.14
RUN /bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends dpkg-dev gcc gnupg libbluetooth-dev libbz2-dev libc6-dev libdb-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 ; 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"; GNUPGHOME="$(mktemp -d)"; export GNUPGHOME; gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$GPG_KEY"; gpg --batch --verify python.tar.xz.asc python.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME" python.tar.xz.asc; mkdir -p /usr/src/python; tar --extract --directory /usr/src/python --strip-components=1 --file 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-lto --with-system-expat --without-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="$(dpkg-buildflags --get CFLAGS)"; LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:-}" "PROFILE_TASK=${PROFILE_TASK:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" "PROFILE_TASK=${PROFILE_TASK:-}" python ; make install; cd /; 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 'libpython*.a' \) \) \) -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 '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' | 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 # buildkit
RUN /bin/sh -c set -eux; for src in idle3 pydoc3 python3 python3-config; do dst="$(echo "$src" | tr -d 3)"; [ -s "/usr/local/bin/$src" ]; [ ! -e "/usr/local/bin/$dst" ]; ln -svT "$src" "/usr/local/bin/$dst"; done # buildkit
ENV PYTHON_PIP_VERSION=23.0.1
ENV PYTHON_SETUPTOOLS_VERSION=65.5.1
ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/dbf0c85f76fb6e1ab42aa672ffca6f0a675d9ee4/public/get-pip.py
ENV PYTHON_GET_PIP_SHA256=dfe9fd5c28dc98b5ac17979a953ea550cec37ae1b47a5116007395bfacff2ab9
RUN /bin/sh -c set -eux; 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 -c -; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; export PYTHONDONTWRITEBYTECODE=1; python get-pip.py --disable-pip-version-check --no-cache-dir --no-compile "pip==$PYTHON_PIP_VERSION" "setuptools==$PYTHON_SETUPTOOLS_VERSION" ; rm -f get-pip.py; pip --version # buildkit
CMD ["python3"]
WORKDIR /opt/blur
/bin/sh -c apt-get -qq update && DEBIAN_FRONTEND=noninteractive apt-get -y install libffi-dev libfreetype6-dev libfribidi-dev libharfbuzz-dev libjpeg-turbo-progs libjpeg62-turbo-dev liblcms2-dev libopenjp2-7-dev libtiff5-dev libwebp-dev libssl-dev meson netpbm xvfb zlib1g-dev libturbojpeg0-dev libjpeg-turbo-progs exiftran && rm -rf /var/lib/apt/lists/*
COPY file:5cefe304ad0748da45a348752a55c2d2fccbe9ae05690efeabe4fffd78f7222a in ./
/bin/sh -c pip install -r ./requirements.txt && pip install torch==2.2.1+cpu torchvision==0.17.1+cpu -f https://download.pytorch.org/whl/cpu/torch_stable.html && pip install ultralytics==8.1.19 --no-deps && pip cache purge
COPY dir:768583935f0b2fab213db6ef9e60a9b8f6dc3e9105846e49de87c585d8dfae7c in ./src
COPY dir:3a382a4ae800ba4f5440c8c16c75f6d34b686c4055c08b422b0c0ee94f2e331e in ./scripts
COPY dir:ed35b6619f76330c2a148f249fefd329bd900ca629f0a0a55f6d97e5f07bf7a5 in ./models
COPY file:362666016c4e8d8da29fea6d7a8c1e5eee1001ea637e2a028fb4ffcf60055d08 in ./
COPY file:71291cf7f8f1e1f79a30a2d89ea6f12d2edbc2a60c234ee0f44db6d2de1a2e89 in ./
/bin/sh -c chmod +x ./docker-entrypoint.sh
EXPOSE 8001
ENTRYPOINT ["./docker-entrypoint.sh"]
LABEL org.opencontainers.image.created=2024-03-25T22:14:41Z
LABEL org.opencontainers.image.revision=2f054a19f81d251772c2955bd997659e2c82a55a
LABEL org.opencontainers.image.source=https://git.ivasoft.cz/SW/geovisio-sgblur.git
LABEL org.opencontainers.image.url=https://git.ivasoft.cz/SW/geovisio-sgblur

Labels

Key Value
org.opencontainers.image.created 2024-03-25T22:14:41Z
org.opencontainers.image.revision 2f054a19f81d251772c2955bd997659e2c82a55a
org.opencontainers.image.source https://git.ivasoft.cz/SW/geovisio-sgblur.git
org.opencontainers.image.url https://git.ivasoft.cz/SW/geovisio-sgblur
Details
Container
2024-03-25 22:21:09 +00:00
16
OCI / Docker
linux/amd64
733 MiB
Versions (1) View all
latest 2024-03-25