Namespace
freqtradeorg
Image / Tag
freqtrade:2020.9.1_plot
Content Digest
sha256:017892ae121dc1e82b4c25e7f2ff13fe504b0bde1d87861fd153a2845f66fa06
Details
Created

2020-09-28 07:52:33 UTC

Size

276 MB

Content Digest
Environment
GPG_KEY

E3FF2839C048B25C084DEBE9B26995E310250568

LANG

C.UTF-8

LD_LIBRARY_PATH

/usr/local/lib

PATH

/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PYTHON_GET_PIP_SHA256

6e0bb0a2c2533361d7f297ed547237caf1b7507f197835974c0dd7eba998c53c

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

20.2.3

PYTHON_VERSION

3.8.6


Layers

[#000] sha256:d121f8d1c4128ebc1e95e5bfad90a0189b84eadbbb2fbaad20cbb26d20b2c8a2 - 9.37% (25.8 MB)

[#001] sha256:ca572574cc82ba635292c0aba70b719de39faffe7a40a802bb0f8c22663b51ac - 0.95% (2.62 MB)

[#002] sha256:38ead5def2161d32f7f736b3d2cd0f0029be0bebe57c80dd480d421d2ea942a8 - 3.67% (10.1 MB)

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

[#004] sha256:922f4bd7bc61208594a5f8f957eab2748fdb470eaaade340ce196df0447a4927 - 0.83% (2.3 MB)

[#005] sha256:1ee5c2513c64c1199b8e6d4265903f4443e1d08b5b0dc5934af84833708b12d8 - 32.4% (89.4 MB)

[#006] sha256:083a631a179a21df27b14dd360903c5492ce846f7707687029e01f3daeb90822 - 0.0% (98 Bytes)

[#007] sha256:b3defab2373d5608fd17f0cd0cf9ebd05e15fc44e0261206f45af16f73901c45 - 0.83% (2.3 MB)

[#008] sha256:1e6522b3f251f87be28efaf4ee541d9e43336c1fd60d3ef5693a6e703fb1bcd6 - 0.68% (1.88 MB)

[#009] sha256:e2130cb4dc026b5394dbf15f6f7f4075a8ba0701f8b2d5ebc5d4e48bd6dbcc11 - 0.0% (687 Bytes)

[#010] sha256:42fab391ff7c7859ed5764bc205d20eec151d60d9f9617ff1aef028155ecb529 - 44.3% (122 MB)

[#011] sha256:88ada89140cf72ee902e33b3212976b22b4f4b3f2e86ffa21a5640b5f50eac26 - 2.48% (6.83 MB)

[#012] sha256:b06b2e2a5aea275dc686a12b37677c61765450a2af37dbe79e175613fda5a02f - 0.01% (31.3 KB)

[#013] sha256:357733c7c78c5cf7d1758ce641e33f4ae0b91dfd0d9003db603b402610a598de - 4.47% (12.3 MB)


History
2020-09-10 00:23:29 UTC

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

2020-09-10 00:23:30 UTC

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

2020-09-10 16:28:20 UTC

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

2020-09-10 16:28:20 UTC

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

2020-09-10 16:28:29 UTC

/bin/sh -c apt-get update && apt-get install -y --no-install-recommends ca-certificates netbase && rm -rf /var/lib/apt/lists/*

2020-09-10 16:28:29 UTC

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

2020-09-24 21:46:22 UTC

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

2020-09-24 21:55:26 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-09-24 21:55:27 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-09-24 21:55:27 UTC

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

2020-09-24 21:55:27 UTC

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

2020-09-24 21:55:27 UTC

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

2020-09-24 21:55:41 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-09-24 21:55:41 UTC

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

2020-09-28 07:48:11 UTC

/bin/sh -c apt-get update && apt-get -y install curl build-essential libssl-dev sqlite3 && apt-get clean && pip install --upgrade pip

2020-09-28 07:48:16 UTC

/bin/sh -c mkdir /freqtrade

2020-09-28 07:48:16 UTC

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

2020-09-28 07:48:18 UTC

/bin/sh -c #(nop) COPY multi:cccdd4649d6cfbe0bf5d4b662b52b355c853ac51ae97a49feb420aa8c3e595e0 in /tmp/

2020-09-28 07:49:46 UTC

/bin/sh -c cd /tmp && /tmp/install_ta-lib.sh && rm -r /tmp/*ta-lib*

2020-09-28 07:49:47 UTC

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

2020-09-28 07:49:49 UTC

/bin/sh -c #(nop) COPY multi:ed47e392e934f61c4a3136d7624e1ee4e99254f1710243a8913729b671f12b3d in /freqtrade/

2020-09-28 07:51:54 UTC

/bin/sh -c pip install numpy --no-cache-dir && pip install -r requirements-hyperopt.txt --no-cache-dir

2020-09-28 07:52:01 UTC

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

2020-09-28 07:52:05 UTC

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

2020-09-28 07:52:06 UTC

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

2020-09-28 07:52:07 UTC

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

2020-09-28 07:52:08 UTC

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

2020-09-28 07:52:28 UTC

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

2020-09-28 07:52:33 UTC

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

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