Namespace
freqtradeorg
Image / Tag
freqtrade:2021.2_pi
Content Digest
sha256:20692cb5806e996d108dd3f83622595bbf48d39afd55b27c7c99f8c644e46d4f
Details
Created

2021-02-24 19:38:25 UTC

Size

147 MB

Content Digest
Environment
GPG_KEY

0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D

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

8006625804f55e1bd99ad4214fd07082fee27a1c35945648a58f9087a714e9d4

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

21.0.1

PYTHON_VERSION

3.7.9


Layers

[#000] sha256:db574d82360c3b60abadbef4f3daf8dee01f24741fc6ab3692aa543558d8b624 - 14.73% (21.7 MB)

[#001] sha256:cdee402f4cff9e28b531974c270d4c727abe01220f0e6c82251f8e437c8bda36 - 1.53% (2.25 MB)

[#002] sha256:26c8e660623d43f82b484d3f260bf8cf33cf78df30100fa2f528dede5ddc04d7 - 6.04% (8.88 MB)

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

[#004] sha256:8b69c6a8b8eca7bd94b6935fdcbdf3c9d98a5ac0810ad68a6f727091d0d35572 - 1.59% (2.34 MB)

[#005] sha256:5eb90f6e11e02cece390703c5a995e5724b80d449d9b72bff166cafa34d4fe9e - 0.0% (105 Bytes)

[#006] sha256:565f14e54bdbaf0f3d43cd92462ebcd02b9c7b9c6826f91ed95f58cedcc667b8 - 13.87% (20.4 MB)

[#007] sha256:760616a4eee2418aeda8f263a9f75866d5416f263cff706f4cec267fadebeeed - 1.18% (1.74 MB)

[#008] sha256:eefab4fd7dfbd77eaf12a13540901d98df53028bba53d4801f864e5c36922161 - 53.83% (79.1 MB)

[#009] sha256:eba6a04e5018bff3b1ac91e1e34c717d279e230a72bd8a121162311e3033998b - 4.69% (6.9 MB)

[#010] sha256:0854ffcf0fa3f5a351dcda4e687fe5ee506842b2255ebea60692f5fe1bde6359 - 2.52% (3.71 MB)


History
2021-02-09 03:00:57 UTC

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

2021-02-09 03:01:00 UTC

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

2021-02-09 13:20:56 UTC

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

2021-02-09 13:20:57 UTC

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

2021-02-09 14:18:33 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/*

2021-02-09 14:48:14 UTC

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

2021-02-09 14:48:15 UTC

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

2021-02-09 15:03:44 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" PROFILE_TASK='-m test.regrtest --pgo test_array test_base64 test_binascii test_binhex test_binop test_bytes test_c_locale_coercion test_class test_cmath test_codecs test_compile test_complex test_csv test_decimal test_dict test_float test_fstring test_hashlib test_io test_iter test_json test_long test_math test_memoryview test_pickle test_re test_set test_slice test_struct test_threading test_time test_traceback test_unicode ' && 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

2021-02-09 15:03:47 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-02-09 15:03:48 UTC

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

2021-02-09 15:03:49 UTC

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

2021-02-09 15:03:49 UTC

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

2021-02-09 15:04:13 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-02-09 15:04:14 UTC

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

2021-02-24 18:56:26 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2021-02-24 18:56:26 UTC (buildkit.dockerfile.v0)

ENV LC_ALL=C.UTF-8

2021-02-24 18:56:26 UTC (buildkit.dockerfile.v0)

ENV PYTHONDONTWRITEBYTECODE=1

2021-02-24 18:56:26 UTC (buildkit.dockerfile.v0)

ENV PYTHONFAULTHANDLER=1

2021-02-24 18:56:26 UTC (buildkit.dockerfile.v0)

ENV PATH=/root/.local/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2021-02-24 18:56:26 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c mkdir /freqtrade # buildkit

2021-02-24 18:56:26 UTC (buildkit.dockerfile.v0)

WORKDIR /freqtrade

2021-02-24 18:56:26 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apt-get update && apt-get -y install libatlas3-base curl sqlite3 && apt-get clean # buildkit

2021-02-24 18:56:59 UTC (buildkit.dockerfile.v0)

COPY /usr/local/lib /usr/local/lib # buildkit

2021-02-24 18:56:59 UTC (buildkit.dockerfile.v0)

ENV LD_LIBRARY_PATH=/usr/local/lib

2021-02-24 19:38:20 UTC (buildkit.dockerfile.v0)

COPY /root/.local /root/.local # buildkit

2021-02-24 19:38:24 UTC (buildkit.dockerfile.v0)

COPY . /freqtrade/ # buildkit

2021-02-24 19:38:25 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c pip install -e . --no-cache-dir && freqtrade install-ui # buildkit

2021-02-24 19:38:25 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["freqtrade"]

2021-02-24 19:38:25 UTC (buildkit.dockerfile.v0)

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