2024-12-16 08:49:07 +0800
199 MB
A035C8C19219BA821ECEA86B64E628F8D684696D
LANGzh_CN.UTF-8
LC_ALLC
LC_CTYPEzh_CN.UTF-8
PATH/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PYTHONPATH/data/InStock
PYTHON_SHA2562a9920c7a0cd236de33644ed980a13cbbc21058bfdc528febb6081575ed73be3
PYTHON_VERSION3.11.11
[#000] sha256:69fb10dc82f9580a647bd4638e741b2338cb8e2575d2be6f0bacfcada936a617 - 14.51% (28.9 MB)
[#001] sha256:e02e032b2f8293e6203d36c272e69a605495de6075978b4bba064e9d8e739fe0 - 0.42% (851 KB)
[#002] sha256:7147816ae7c7bcc5623c22f0579ab4e8f3db8e93e171569a56bf7f04283bcd11 - 7.39% (14.7 MB)
[#003] sha256:cabde1ba30bdb29ed81c6bfd941c888600bc4e62d72b29e899f19e9ab8cac638 - 0.0% (249 Bytes)
[#004] sha256:762c3da7eba0b4825a784227c44749fa33b1a6380ee56313bf22416570d06ec0 - 76.31% (152 MB)
[#005] sha256:8584a2250cae0e5aab04857d5684f743c53467d2a4da4b1cd2c1490c3c1b69ec - 0.0% (94 Bytes)
[#006] sha256:e2c28f1721544583fa8fd57aac1951d950fe3e938a464cc88acd7b14f0062361 - 1.37% (2.72 MB)
[#007] sha256:ddaa3af881c2071d7d9016713a6b2645d4861b07d4d4494a44a3e34df6cf803f - 0.0% (303 Bytes)
[#008] sha256:67d1af979fae034500b7e1af3149ae689df62657981fe5b8ce399d22faefa0ad - 0.0% (300 Bytes)
[#009] sha256:503333c8db13fcf1d279e90f531bdc33a58437e5156d2abef18752f48f869764 - 0.0% (396 Bytes)
[#010] sha256:ac25257f315aac64a003556ac99ddb389cabd43871b557e93cb761d411d84c2d - 0.0% (1.59 KB)
# debian.sh --arch 'amd64' out/ 'bullseye' '@1733097600'
2024-12-03 22:49:59 UTC (buildkit.dockerfile.v0)ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2024-12-03 22:49:59 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2024-12-03 22:49:59 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates netbase tzdata ; rm -rf /var/lib/apt/lists/* # buildkit
2024-12-03 22:49:59 UTC (buildkit.dockerfile.v0)ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D
2024-12-03 22:49:59 UTC (buildkit.dockerfile.v0)ENV PYTHON_VERSION=3.11.11
2024-12-03 22:49:59 UTC (buildkit.dockerfile.v0)ENV PYTHON_SHA256=2a9920c7a0cd236de33644ed980a13cbbc21058bfdc528febb6081575ed73be3
2024-12-03 22:49:59 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends dpkg-dev gcc gnupg libbluetooth-dev libbz2-dev libc6-dev libdb-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 ; wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz"; echo "$PYTHON_SHA256 *python.tar.xz" | sha256sum -c -; wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc"; GNUPGHOME="$(mktemp -d)"; export GNUPGHOME; gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$GPG_KEY"; gpg --batch --verify python.tar.xz.asc python.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME" python.tar.xz.asc; mkdir -p /usr/src/python; tar --extract --directory /usr/src/python --strip-components=1 --file 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-lto --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="$(dpkg-buildflags --get CFLAGS)"; LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" python ; make install; cd /; 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 'libpython*.a' \) \) \) -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 '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' | 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/*; export PYTHONDONTWRITEBYTECODE=1; python3 --version; pip3 install --disable-pip-version-check --no-cache-dir --no-compile 'setuptools==65.5.1' wheel ; pip3 --version # buildkit
2024-12-03 22:49:59 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; for src in idle3 pip3 pydoc3 python3 python3-config; do dst="$(echo "$src" | tr -d 3)"; [ -s "/usr/local/bin/$src" ]; [ ! -e "/usr/local/bin/$dst" ]; ln -svT "$src" "/usr/local/bin/$dst"; done # buildkit
2024-12-03 22:49:59 UTC (buildkit.dockerfile.v0)CMD ["python3"]
2024-12-09 15:08:45 +0800 (buildkit.dockerfile.v0)MAINTAINER myh
2024-12-09 15:08:45 +0800 (buildkit.dockerfile.v0)ENV LANG=zh_CN.UTF-8
2024-12-09 15:08:45 +0800 (buildkit.dockerfile.v0)ENV LC_CTYPE=zh_CN.UTF-8
2024-12-09 15:08:45 +0800 (buildkit.dockerfile.v0)ENV LC_ALL=C
2024-12-09 15:08:45 +0800 (buildkit.dockerfile.v0)ENV PYTHONPATH=/data/InStock
2024-12-09 15:08:45 +0800 (buildkit.dockerfile.v0)EXPOSE map[9988/tcp:{}]
2024-12-09 15:08:45 +0800 (buildkit.dockerfile.v0)RUN /bin/sh -c sed -i "s@http://\(deb\|security\).debian.org@https://mirrors.aliyun.com@g" /etc/apt/sources.list && echo "[global]\nindex-url = https://mirrors.aliyun.com/pypi/simple\ntrusted-host = mirrors.aliyun.com" > /etc/pip.conf && ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo "Asia/Shanghai" > /etc/timezone && apt-get update && apt-get install -y cron gcc make python3-dev default-libmysqlclient-dev build-essential pkg-config curl && pip install supervisor && pip install mysqlclient && pip install requests && pip install arrow && pip install numpy && pip install SQLAlchemy && pip install PyMySQL && pip install Logbook && pip install python_dateutil && pip install py_mini_racer && pip install tqdm && pip install beautifulsoup4 && pip install bokeh && pip install pandas && pip install tornado && pip install mini-racer && pip install easytrader && curl -SL https://prdownloads.sourceforge.net/ta-lib/ta-lib-0.4.0-src.tar.gz | tar -xzC . && cd ta-lib/ && ./configure --prefix=/usr && make && make install && cd .. && pip install TA-Lib && rm -rf ta-lib* && apt-get --purge remove -y gcc make python3-dev default-libmysqlclient-dev curl && rm -rf /root/.cache/* && rm -rf /var/lib/apt/lists/* && apt-get clean && apt-get autoclean && apt-get autoremove -y # buildkit
2024-12-09 15:08:45 +0800 (buildkit.dockerfile.v0)WORKDIR /data
2024-12-16 08:49:06 +0800 (buildkit.dockerfile.v0)COPY stock /data/InStock # buildkit
2024-12-16 08:49:06 +0800 (buildkit.dockerfile.v0)COPY cron/cron.hourly /etc/cron.hourly # buildkit
2024-12-16 08:49:06 +0800 (buildkit.dockerfile.v0)COPY cron/cron.workdayly /etc/cron.workdayly # buildkit
2024-12-16 08:49:06 +0800 (buildkit.dockerfile.v0)COPY cron/cron.monthly /etc/cron.monthly # buildkit
2024-12-16 08:49:07 +0800 (buildkit.dockerfile.v0)RUN /bin/sh -c chmod 755 /data/InStock/instock/bin/run_*.sh && chmod 755 /etc/cron.hourly/* && chmod 755 /etc/cron.workdayly/* && chmod 755 /etc/cron.monthly/* && echo "SHELL=/bin/sh \nPATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin \n*/30 9,10,11,13,14,15 * * 1-5 /bin/run-parts /etc/cron.hourly \n30 17 * * 1-5 /bin/run-parts /etc/cron.workdayly \n30 10 * * 3,6 /bin/run-parts /etc/cron.monthly \n" > /var/spool/cron/crontabs/root && chmod 600 /var/spool/cron/crontabs/root # buildkit
2024-12-16 08:49:07 +0800 (buildkit.dockerfile.v0)ENTRYPOINT ["supervisord" "-n" "-c" "/data/InStock/supervisor/supervisord.conf"]
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.