Namespace
freqtradeorg
Image / Tag
freqtrade:2020.12_plot
Content Digest
sha256:3aa7a9c668d85ec30aba1279ecc119df25ac2a48e4210a5e18b9879f12f13813
Details
Created

2020-12-29 06:24:04 UTC

Size

154 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

6a0b13826862f33c13b614a921d36253bfa1ae779c5fbf569876f3585057e9d2

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

20.3.3

PYTHON_VERSION

3.8.6


Layers

[#000] sha256:6ec7b7d162b24bd6df88abde89ceb6d7bbc2be927f025c9dd061af2b0c328cfe - 16.81% (25.8 MB)

[#001] sha256:80ff6536d04b44548c6b469e46e74013f30644af5fe48d7eb611c67077bb3ee9 - 1.71% (2.62 MB)

[#002] sha256:2d04da85e4856018cdf1a31b410c1e7c5c92a10f4396eac1bc47713f873a0ae4 - 6.6% (10.1 MB)

[#003] sha256:998aa32a5c8a60011e9449193d3486cb6bd8370d454a4871bbc7cf8c78fd977d - 0.0% (232 Bytes)

[#004] sha256:7733ef26f344e0c4bcbe047812df2bd76c962fef9b08ff8a420111668c662da3 - 1.5% (2.31 MB)

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

[#006] sha256:a70a4d0e12b0c266d96e93b5c2ed18211b182051d18aba47ebbfaf34a783b7fb - 1.2% (1.85 MB)

[#007] sha256:e00cd73c7c73944d89103c8a985be650f37fc3b585c2ba6b428f44b654f4c7b8 - 59.56% (91.6 MB)

[#008] sha256:3849564e82d97988880033a4e267f91655a3fff8281bbafa63b4b72bfe926062 - 4.43% (6.81 MB)

[#009] sha256:68d39b85e4ba23ff70d98e98592865a1802b327f6b6fea9a4b2c36db2e615018 - 0.01% (23.2 KB)

[#010] sha256:41b10aabab18dff7d7fb12ebea56e7b27982d81a84a3371d0e503f91c710aed7 - 8.19% (12.6 MB)


History
2020-12-11 02:06:10 UTC

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

2020-12-11 02:06:10 UTC

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

2020-12-11 13:53:18 UTC

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

2020-12-11 13:53:19 UTC

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

2020-12-11 14:31:08 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/*

2020-12-11 14:31:08 UTC

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

2020-12-11 14:31:09 UTC

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

2020-12-11 14:39: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' \) \) -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

2020-12-11 14:39: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

2020-12-15 22:32:56 UTC

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

2020-12-15 22:32:56 UTC

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

2020-12-15 22:32:56 UTC

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

2020-12-15 22:33:10 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

2020-12-15 22:33:10 UTC

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

2020-12-29 06:19:02 UTC

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

2020-12-29 06:19:03 UTC

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

2020-12-29 06:19:04 UTC

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

2020-12-29 06:19:05 UTC

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

2020-12-29 06:19:06 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

2020-12-29 06:19:07 UTC

/bin/sh -c mkdir /freqtrade

2020-12-29 06:19:08 UTC

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

2020-12-29 06:23:11 UTC

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

2020-12-29 06:23:12 UTC

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

2020-12-29 06:23:21 UTC

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

2020-12-29 06:23:31 UTC

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

2020-12-29 06:23:38 UTC

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

2020-12-29 06:23:39 UTC

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

2020-12-29 06:23:40 UTC

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

2020-12-29 06:23:42 UTC

/bin/sh -c #(nop) COPY file:d83aee2504ac2865f0350c8c24dbb70927d1a5fcc4b2614ba0e04f7fd12180e4 in /freqtrade/

2020-12-29 06:24:04 UTC

/bin/sh -c pip install -r requirements-plot.txt --no-cache-dir

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