Namespace
freqtradeorg
Image / Tag
freqtrade:2021.3
Content Digest
sha256:1a9c59c1da464fb9ad2d2d5dcf109c8923aa71e586c2b2d50a01a1cc569913fc
Details
Created

2021-03-28 09:53:55 UTC

Size

188 MB

Content Digest
Environment
GPG_KEY

E3FF2839C048B25C084DEBE9B26995E310250568

LANG

C.UTF-8

LC_ALL

C.UTF-8

LD_LIBRARY_PATH

/usr/local/lib

PATH

/root/.local/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PYTHONDONTWRITEBYTECODE

1

PYTHONFAULTHANDLER

1

PYTHON_GET_PIP_SHA256

c3b81e5d06371e135fb3156dc7d8fd6270735088428c4a9a5ec1f342e2024565

PYTHON_GET_PIP_URL

https://github.com/pypa/get-pip/raw/b60e2320d9e8d02348525bd74e871e466afdf77c/get-pip.py

PYTHON_PIP_VERSION

21.0.1

PYTHON_VERSION

3.9.2


Layers

[#000] sha256:ac2522cc72690febc428fb46fb39a4efc5e0a721c3ad15d9992b01515f2fad1a - 13.75% (25.8 MB)

[#001] sha256:74f86becb84a3ee98802e154c3117092e23fffae5d97369eaf6cacd679362972 - 1.41% (2.64 MB)

[#002] sha256:d5999a9115b979ece2f39305f7d595a01e1933ce4ae0bee769a2e1ca33f38a51 - 5.53% (10.4 MB)

[#003] sha256:8d716c2e335b6e413174d633d6967fbe91077a2471ccd7ee70b385e65fa7c238 - 0.0% (231 Bytes)

[#004] sha256:66726a969a7003c9df08a9aa88b4d493b8b8652f2edb044e4a0cfffd6ff618ae - 1.25% (2.34 MB)

[#005] sha256:918e1f7c39ba10d2469eedac0cd5f642856354021e5f6bf77806dea18bb90a97 - 0.0% (98 Bytes)

[#006] sha256:c5ae08908206cf393aaaf42d0b1d4772664ac819b959e508652aa28c335cd8ca - 0.99% (1.85 MB)

[#007] sha256:11c6544eac3375665653377c1c0dd7d63d5db1db383c7f157defec9bd61a1411 - 71.43% (134 MB)

[#008] sha256:acf88d9dedabd162b5e0015e5cdf918f211f577e1a7a89bc5705bb705984990a - 3.68% (6.92 MB)

[#009] sha256:f4e5b3b72723b9297a340161cc4fc17763a31dc8d9fad4cf4d17a1334835362b - 1.97% (3.71 MB)


History
2021-03-26 15:20:59 UTC

/bin/sh -c #(nop) ADD file:b2085f4b0a7cb0e5754874c712254e5cd941062b27b8d7ed2080520196b91597 in /

2021-03-26 15:20:59 UTC

/bin/sh -c #(nop) CMD ["bash"]

2021-03-27 02:33:51 UTC

/bin/sh -c #(nop) ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2021-03-27 02:33:52 UTC

/bin/sh -c #(nop) ENV LANG=C.UTF-8

2021-03-27 02:33:58 UTC

/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/*

2021-03-27 02:43:15 UTC

/bin/sh -c #(nop) ENV GPG_KEY=E3FF2839C048B25C084DEBE9B26995E310250568

2021-03-27 02:43:15 UTC

/bin/sh -c #(nop) ENV PYTHON_VERSION=3.9.2

2021-03-27 02:51:27 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 ha.pool.sks-keyservers.net --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' \) \) \) -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-03-27 02:51:28 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-03-27 02:51:29 UTC

/bin/sh -c #(nop) ENV PYTHON_PIP_VERSION=21.0.1

2021-03-27 02:51:29 UTC

/bin/sh -c #(nop) ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/b60e2320d9e8d02348525bd74e871e466afdf77c/get-pip.py

2021-03-27 02:51:29 UTC

/bin/sh -c #(nop) ENV PYTHON_GET_PIP_SHA256=c3b81e5d06371e135fb3156dc7d8fd6270735088428c4a9a5ec1f342e2024565

2021-03-27 02:51:46 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" ; 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-03-27 02:51:46 UTC

/bin/sh -c #(nop) CMD ["python3"]

2021-03-28 09:48:46 UTC

/bin/sh -c #(nop) ENV LANG=C.UTF-8

2021-03-28 09:48:46 UTC

/bin/sh -c #(nop) ENV LC_ALL=C.UTF-8

2021-03-28 09:48:47 UTC

/bin/sh -c #(nop) ENV PYTHONDONTWRITEBYTECODE=1

2021-03-28 09:48:48 UTC

/bin/sh -c #(nop) ENV PYTHONFAULTHANDLER=1

2021-03-28 09:48:49 UTC

/bin/sh -c #(nop) ENV PATH=/root/.local/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2021-03-28 09:48:50 UTC

/bin/sh -c mkdir /freqtrade

2021-03-28 09:48:51 UTC

/bin/sh -c #(nop) WORKDIR /freqtrade

2021-03-28 09:53:18 UTC

/bin/sh -c #(nop) COPY dir:5ced2042df30111a77dd9b1e07735f0675c413444641ba2418136905bba7291a in /usr/local/lib

2021-03-28 09:53:19 UTC

/bin/sh -c #(nop) ENV LD_LIBRARY_PATH=/usr/local/lib

2021-03-28 09:53:31 UTC

/bin/sh -c #(nop) COPY dir:d837bffbff8bf32b4739ee8ac6255cde311a0b8ea1409e3b460bbd70e8fe2b7b in /root/.local

2021-03-28 09:53:41 UTC

/bin/sh -c #(nop) COPY dir:b0408b85de79b37d813f69cc898a184b24baf7cd95339ba304a3113961bbbfa8 in /freqtrade/

2021-03-28 09:53:53 UTC

/bin/sh -c pip install -e . --no-cache-dir && mkdir /freqtrade/user_data/ && freqtrade install-ui

2021-03-28 09:53:54 UTC

/bin/sh -c #(nop) ENTRYPOINT ["freqtrade"]

2021-03-28 09:53:55 UTC

/bin/sh -c #(nop) CMD ["trade"]

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete