2021-06-26 16:23:14 UTC
161 MB
docker
GPG_KEY0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D
LANGC.UTF-8
LC_ALLC.UTF-8
LD_LIBRARY_PATH/usr/local/lib
PATH/home/ftuser/.local/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PYTHONDONTWRITEBYTECODE1
PYTHONFAULTHANDLER1
PYTHON_GET_PIP_SHA2568890955d56a8262348470a76dc432825f61a84a54e2985a86cd520f656a6e220
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/936e08ce004d0b2fae8952c50f7ccce1bc578ce5/public/get-pip.py
PYTHON_PIP_VERSION21.1.2
PYTHON_VERSION3.7.10
[#000] sha256:8452be1adf00f91570fe21a8e61aaf4c12e014daf67d7de65d984f4e8ecca2f1 - 13.45% (21.7 MB)
[#001] sha256:cd1f0219c6f25e0f63c16371c15f286b01da744f1cf1f7c240e30a355965287a - 1.39% (2.25 MB)
[#002] sha256:d2fade9bded23a7356d3f559688c1da73191be57780cd5a9d6964e62f16ee10c - 5.51% (8.88 MB)
[#003] sha256:39e906aa388453aa56b1e4dae81992fcecb9b8cbfa7c6644c62d0c41cc5b6883 - 0.0% (233 Bytes)
[#004] sha256:4f1f77ef667d0ab678ee041729449a2e84694a70e80f2afa88fd70697c410234 - 1.56% (2.51 MB)
[#005] sha256:113f7b2c34ca5397a6e0688baedb6a74cbc506a7d9276253561d61cfd7c6e42e - 19.2% (31 MB)
[#006] sha256:a0c07bd8bad8c4ba64ae00190406cc724261d24dcfa6ecefda0bca7265392ce5 - 2.63% (4.25 MB)
[#007] sha256:36614fb9730083c2e2a89e193169be51b56abc46889a6e3120ae3ec088184cca - 49.61% (80 MB)
[#008] sha256:8dbdea99d3765d12a2fec1c716b1caf6152b78f0e463b7b106d161d86d1c90a6 - 4.66% (7.52 MB)
[#009] sha256:9dea600d334db20744cfa266fc960eaac0a7540e99d9d96a040d161bf74851ba - 1.99% (3.2 MB)
/bin/sh -c #(nop) ADD file:8d200a3bbe985ff355343675c5555852f27550a9e367969df6bc98034efb8fd4 in /
2021-06-23 00:20:31 UTC/bin/sh -c #(nop) CMD ["bash"]
2021-06-24 01:19:37 UTC/bin/sh -c #(nop) ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2021-06-24 01:19:37 UTC/bin/sh -c #(nop) ENV LANG=C.UTF-8
2021-06-24 03:17:45 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-06-24 04:15:19 UTC/bin/sh -c #(nop) ENV GPG_KEY=0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D
2021-06-24 04:15:20 UTC/bin/sh -c #(nop) ENV PYTHON_VERSION=3.7.10
2021-06-24 04:36:40 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 hkps://keys.openpgp.org --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-06-24 04:36:42 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-06-24 04:36:42 UTC/bin/sh -c #(nop) ENV PYTHON_PIP_VERSION=21.1.2
2021-06-24 04:36:43 UTC/bin/sh -c #(nop) ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/936e08ce004d0b2fae8952c50f7ccce1bc578ce5/public/get-pip.py
2021-06-24 04:36:43 UTC/bin/sh -c #(nop) ENV PYTHON_GET_PIP_SHA256=8890955d56a8262348470a76dc432825f61a84a54e2985a86cd520f656a6e220
2021-06-24 04:37: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
2021-06-24 04:37:10 UTC/bin/sh -c #(nop) CMD ["python3"]
2021-06-26 13:25:42 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2021-06-26 13:25:42 UTC (buildkit.dockerfile.v0)ENV LC_ALL=C.UTF-8
2021-06-26 13:25:42 UTC (buildkit.dockerfile.v0)ENV PYTHONDONTWRITEBYTECODE=1
2021-06-26 13:25:42 UTC (buildkit.dockerfile.v0)ENV PYTHONFAULTHANDLER=1
2021-06-26 13:25:42 UTC (buildkit.dockerfile.v0)ENV PATH=/home/ftuser/.local/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2021-06-26 13:25:42 UTC (buildkit.dockerfile.v0)ENV FT_APP_ENV=docker
2021-06-26 13:25:42 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c mkdir /freqtrade && apt-get update && apt-get -y install sudo libatlas3-base curl sqlite3 libhdf5-dev && apt-get clean && useradd -u 1000 -G sudo -U -m ftuser && chown ftuser:ftuser /freqtrade && echo "ftuser ALL=(ALL) NOPASSWD: /bin/chown" >> /etc/sudoers # buildkit
2021-06-26 13:25:42 UTC (buildkit.dockerfile.v0)WORKDIR /freqtrade
2021-06-26 13:25:42 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib /usr/local/lib # buildkit
2021-06-26 13:25:42 UTC (buildkit.dockerfile.v0)ENV LD_LIBRARY_PATH=/usr/local/lib
2021-06-26 16:23:11 UTC (buildkit.dockerfile.v0)COPY /home/ftuser/.local /home/ftuser/.local # buildkit
2021-06-26 16:23:11 UTC (buildkit.dockerfile.v0)USER ftuser
2021-06-26 16:23:14 UTC (buildkit.dockerfile.v0)COPY . /freqtrade/ # buildkit
2021-06-26 16:23:14 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c pip install -e . --user --no-cache-dir --no-build-isolation && mkdir /freqtrade/user_data/ && freqtrade install-ui # buildkit
2021-06-26 16:23:14 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["freqtrade"]
2021-06-26 16:23:14 UTC (buildkit.dockerfile.v0)CMD ["trade"]
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.