Namespace
freqtradeorg
Image / Tag
freqtrade:2020.11
Content Digest
sha256:bf68a45656da0311a7f9327003472c361292dd07ada9fe6b1f193d8a27a69ec2
Details
Created

2020-11-27 16:28:49 UTC

Size

263 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.4

PYTHON_VERSION

3.8.6


Layers

[#000] sha256:852e50cd189dfeb54d97680d9fa6bed21a6d7d18cfb56d6abfe2de9d7f173795 - 9.83% (25.8 MB)

[#001] sha256:334ed303e4ad2f8dc872f2e845d79012ad648eaced444e009ae9a397cc4b4dbb - 1.0% (2.62 MB)

[#002] sha256:a687a65725ea883366a61d24db0f946ad384aea893297d9510e50fa13f565539 - 3.86% (10.1 MB)

[#003] sha256:fe607cb30fbe1148b5885d58c909d0c08cbf2c0848cc871845112f3ee0a0f9ba - 0.0% (234 Bytes)

[#004] sha256:2f7f979bc1b06593f5a691ceecc52ce442d719549c59cf548b3c5dd866a61600 - 0.87% (2.3 MB)

[#005] sha256:16ec012b9aea7a4418500b4ab3a78384503f9560c7a4b4eef3eb70c8079729fd - 33.99% (89.4 MB)

[#006] sha256:321589ce7f7d6a83a9ba27f397028dfa7ddd2ae8a9fd62c569266cb90a02acd5 - 0.0% (98 Bytes)

[#007] sha256:4fb6c004ec923a0848607edab810bb49f2087a5bebadc7c3f57c4eaf742a9ff1 - 0.84% (2.2 MB)

[#008] sha256:72bae4f0d842e75983104272da09fc3489464163441e9658fb6544a93a5fee55 - 0.71% (1.88 MB)

[#009] sha256:2b8d42eace08c3fae01898cc75f95f75ca1433f370b42726223991abf25c96e7 - 0.0% (698 Bytes)

[#010] sha256:37bcdeed2bf5ab182739434c21b4a4379b18c178abdc66409aa3c6036eb00f9e - 46.33% (122 MB)

[#011] sha256:d6628aa2f512feb061e5a943f2decc421fc6b3b03ec2ab1c2365d84a38ebabab - 2.57% (6.76 MB)

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


History
2020-11-17 20:21:17 UTC

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

2020-11-17 20:21:17 UTC

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

2020-11-18 13:07:04 UTC

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

2020-11-18 13:07:04 UTC

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

2020-11-25 02:39:37 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-11-25 02:39:37 UTC

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

2020-11-25 02:39:38 UTC

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

2020-11-25 02:49:37 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-11-25 02:49:39 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-11-25 02:49:39 UTC

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

2020-11-25 02:49:39 UTC

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

2020-11-25 02:49:39 UTC

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

2020-11-25 02:49:55 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-11-25 02:49:55 UTC

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

2020-11-27 16:25:06 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-11-27 16:25:11 UTC

/bin/sh -c mkdir /freqtrade

2020-11-27 16:25:12 UTC

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

2020-11-27 16:25:14 UTC

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

2020-11-27 16:26:41 UTC

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

2020-11-27 16:26:42 UTC

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

2020-11-27 16:26:44 UTC

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

2020-11-27 16:28:36 UTC

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

2020-11-27 16:28:43 UTC

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

2020-11-27 16:28:47 UTC

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

2020-11-27 16:28:48 UTC

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

2020-11-27 16:28:49 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