2024-10-09 18:15:09 UTC
411 MB
/etc/ansible/collections
ANSIBLE_HOME/etc/ansible
ANSIBLE_WORK_DIR/ansible
DEBUGfalse
GPG_KEYA035C8C19219BA821ECEA86B64E628F8D684696D
LANGC.UTF-8
PATH/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PYTHON_VERSION3.10.15
[#000] sha256:014ac6453c34f79cc163f6567c184e5eb0b48cdc07ecbfb1388d90e95ac90b02 - 12.77% (52.5 MB)
[#001] sha256:21912b76607d1849ada521d53cc1be42bcc38d6583bd385a1bbd91babc6745f8 - 3.65% (15 MB)
[#002] sha256:ee27f1f94c19451b787e3a7d81f5eefbd7aed799349b4208bb04c1ce8880ccb2 - 12.68% (52.2 MB)
[#003] sha256:fa7a7fe5b36fbd67e153a5a6e8ec36c41c1fb931871662835b9abdd59e785fdb - 45.67% (188 MB)
[#004] sha256:fb49d9431613b695df06386d624298e767e5ce76b2cdccadca6ef621c9e5dd70 - 1.4% (5.77 MB)
[#005] sha256:8282df6899b86845c48fc8d903ebe0c7f7e57abcbe74bdcc3eb5f5537f703110 - 4.73% (19.5 MB)
[#006] sha256:1bcddbef247aa0dd3eaf2b88ba9eb68ee43470330bc17a7c29d6f5329ced1403 - 0.0% (249 Bytes)
[#007] sha256:3ff8e0e229e02718c6d61f3efed94616f20f2c31df8cd74bb21ad8ecc7eb6d3d - 0.0% (2.21 KB)
[#008] sha256:cf55ecbb741fab932259a0e29cd8a31e41015349d5f393fbc08062eb8702b5aa - 19.09% (78.5 MB)
[#009] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
/bin/sh -c #(nop) ADD file:52a4b3d3a7281812594cb25cd6c6e83649d63a981e9f92f7c189ebe080249490 in /
2024-09-09 17:16:05 UTC/bin/sh -c #(nop) CMD ["bash"]
2024-09-09 17:16:05 UTC/bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates curl gnupg netbase wget ; rm -rf /var/lib/apt/lists/*
2024-09-09 17:16:05 UTC/bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends git mercurial openssh-client subversion procps ; rm -rf /var/lib/apt/lists/*
2024-09-09 17:16:05 UTC/bin/sh -c set -ex; apt-get update; apt-get install -y --no-install-recommends autoconf automake bzip2 default-libmysqlclient-dev dpkg-dev file g++ gcc imagemagick libbz2-dev libc6-dev libcurl4-openssl-dev libdb-dev libevent-dev libffi-dev libgdbm-dev libglib2.0-dev libgmp-dev libjpeg-dev libkrb5-dev liblzma-dev libmagickcore-dev libmagickwand-dev libmaxminddb-dev libncurses5-dev libncursesw5-dev libpng-dev libpq-dev libreadline-dev libsqlite3-dev libssl-dev libtool libwebp-dev libxml2-dev libxslt-dev libyaml-dev make patch unzip xz-utils zlib1g-dev ; rm -rf /var/lib/apt/lists/*
2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends libbluetooth-dev tk-dev uuid-dev ; rm -rf /var/lib/apt/lists/* # buildkit
2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D
2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)ENV PYTHON_VERSION=3.10.15
2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; 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"; 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-system-expat --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="$(dpkg-buildflags --get CFLAGS)"; LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:-}" "PROFILE_TASK=${PROFILE_TASK:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" "PROFILE_TASK=${PROFILE_TASK:-}" python ; make install; bin="$(readlink -ve /usr/local/bin/python3)"; dir="$(dirname "$bin")"; mkdir -p "/usr/share/gdb/auto-load/$dir"; cp -vL Tools/gdb/libpython.py "/usr/share/gdb/auto-load/$bin-gdb.py"; 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; 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-09-09 17:16:05 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-09-09 17:16:05 UTC (buildkit.dockerfile.v0)CMD ["python3"]
2024-10-09 18:14:35 UTC (buildkit.dockerfile.v0)ARG BUILD_ANSIBLE_VARIATION=ansible
2024-10-09 18:14:35 UTC (buildkit.dockerfile.v0)ARG BUILD_ANSIBLE_PATCH_VERSION=9.11.0
2024-10-09 18:14:35 UTC (buildkit.dockerfile.v0)ARG PACKAGE_DEPENDENCIES=git,gosu,less,libffi-dev,libhdf5-dev,libssl-dev,openssh-client,sshpass
2024-10-09 18:14:35 UTC (buildkit.dockerfile.v0)ARG PUID=1000
2024-10-09 18:14:35 UTC (buildkit.dockerfile.v0)ARG PGID=1000
2024-10-09 18:14:35 UTC (buildkit.dockerfile.v0)ARG REPOSITORY_BUILD_VERSION=v0.4.0
2024-10-09 18:14:35 UTC (buildkit.dockerfile.v0)ENV DEBUG=false ANSIBLE_WORK_DIR=/ansible ANSIBLE_HOME=/etc/ansible ANSIBLE_COLLECTIONS_PATH=/etc/ansible/collections
2024-10-09 18:14:35 UTC (buildkit.dockerfile.v0)COPY --chown=root:root --chmod=755 src/rootfs / # buildkit
2024-10-09 18:15:09 UTC (buildkit.dockerfile.v0)RUN |6 BUILD_ANSIBLE_VARIATION=ansible BUILD_ANSIBLE_PATCH_VERSION=9.11.0 PACKAGE_DEPENDENCIES=git,gosu,less,libffi-dev,libhdf5-dev,libssl-dev,openssh-client,sshpass PUID=1000 PGID=1000 REPOSITORY_BUILD_VERSION=v0.4.0 /bin/sh -c serversideup-dep-install-alpine ${PACKAGE_DEPENDENCIES} && serversideup-dep-install-debian ${PACKAGE_DEPENDENCIES} && serversideup-create-unprivileged-user ansible "${PUID}" "${PGID}" && mkdir -p "${ANSIBLE_HOME}/tmp" && echo -e '[local]\nlocalhost ansible_host=127.0.0.1' > "${ANSIBLE_HOME}/hosts" && chown -R "${PUID}:${PGID}" "${ANSIBLE_HOME}" && chmod 1777 "${ANSIBLE_HOME}/tmp" && mkdir -p "${ANSIBLE_WORK_DIR}" && chown -R "${PUID}:${PGID}" "${ANSIBLE_WORK_DIR}" && mkdir -p /ssh && chmod 700 /ssh && chown "${PUID}:${PGID}" /ssh && ln -s /ssh /home/ansible/.ssh && echo "🤓 Installing ${BUILD_ANSIBLE_VARIATION}==${BUILD_ANSIBLE_PATCH_VERSION}" && pip3 install --no-cache-dir "${BUILD_ANSIBLE_VARIATION}==${BUILD_ANSIBLE_PATCH_VERSION}" && pip3 install --no-cache-dir ansible-lint passlib requests python-dateutil && ansible --version # buildkit
2024-10-09 18:15:09 UTC (buildkit.dockerfile.v0)LABEL org.opencontainers.image.title=serversideup/ansible org.opencontainers.image.description=Run Ansible anywhere with a lightwieght and powerful Docker image org.opencontainers.image.url=https://github.com/serversideup/docker-ansible org.opencontainers.image.source=https://github.com/serversideup/docker-ansible org.opencontainers.image.documentation=https://github.com/serversideup/docker-ansible org.opencontainers.image.vendor=ServerSideUp org.opencontainers.image.authors=Jay Rogers (@jaydrogers) org.opencontainers.image.version=v0.4.0 org.opencontainers.image.licenses=GPL-3.0-or-later
2024-10-09 18:15:09 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["/entrypoint.sh"]
2024-10-09 18:15:09 UTC (buildkit.dockerfile.v0)WORKDIR /ansible
2024-10-09 18:15:09 UTC (buildkit.dockerfile.v0)CMD ["ansible-playbook" "--version"]
2024-10-09 18:18:25 UTC
402 MB
/etc/ansible/collections
ANSIBLE_HOME/etc/ansible
ANSIBLE_WORK_DIR/ansible
DEBUGfalse
GPG_KEYA035C8C19219BA821ECEA86B64E628F8D684696D
LANGC.UTF-8
PATH/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PYTHON_VERSION3.10.15
[#000] sha256:374a548aba539daa8d37f8b0fe7326b582daa60fe22cc343a838af2e82a4ca1c - 12.75% (51.2 MB)
[#001] sha256:eb4bba36b8add5e5ec5da6aa2c18637b64bce2d5f3f7d83723817e2139a11bcc - 3.74% (15 MB)
[#002] sha256:f212bcfdd3a473cde2991df3e1cf5373d8f097a630557a35fa77d891acce93d6 - 13.01% (52.3 MB)
[#003] sha256:fe09310330a122777457e6d6b3094e1d1391aa246ba1b028adeb03cd353d0d29 - 45.09% (181 MB)
[#004] sha256:46359c99dbec424cd1cbb59658bc8c2209c58df04b5908825da0957ecd70e7d1 - 1.46% (5.88 MB)
[#005] sha256:50ed87becc7e7f8547b249f44640d4e9a8145f202a27a54fb9d93a991fe4e278 - 4.82% (19.4 MB)
[#006] sha256:d476cb9ea825ce1f30e8b9a4d1799deae1c1492cd6435fe7ccabc8de257f280d - 0.0% (249 Bytes)
[#007] sha256:3ff8e0e229e02718c6d61f3efed94616f20f2c31df8cd74bb21ad8ecc7eb6d3d - 0.0% (2.21 KB)
[#008] sha256:de9b986324b432d022798b14e6c59c83a311f51d1e2f9cf31cb2f2f59e4b44e6 - 19.12% (76.8 MB)
[#009] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
/bin/sh -c #(nop) ADD file:20638e93d5a3e884b24b90ba3bef17ad5a4c795085c457bd5729f2f5caaf6a73 in /
2024-09-09 17:16:05 UTC/bin/sh -c #(nop) CMD ["bash"]
2024-09-09 17:16:05 UTC/bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates curl gnupg netbase wget ; rm -rf /var/lib/apt/lists/*
2024-09-09 17:16:05 UTC/bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends git mercurial openssh-client subversion procps ; rm -rf /var/lib/apt/lists/*
2024-09-09 17:16:05 UTC/bin/sh -c set -ex; apt-get update; apt-get install -y --no-install-recommends autoconf automake bzip2 default-libmysqlclient-dev dpkg-dev file g++ gcc imagemagick libbz2-dev libc6-dev libcurl4-openssl-dev libdb-dev libevent-dev libffi-dev libgdbm-dev libglib2.0-dev libgmp-dev libjpeg-dev libkrb5-dev liblzma-dev libmagickcore-dev libmagickwand-dev libmaxminddb-dev libncurses5-dev libncursesw5-dev libpng-dev libpq-dev libreadline-dev libsqlite3-dev libssl-dev libtool libwebp-dev libxml2-dev libxslt-dev libyaml-dev make patch unzip xz-utils zlib1g-dev ; rm -rf /var/lib/apt/lists/*
2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends libbluetooth-dev tk-dev uuid-dev ; rm -rf /var/lib/apt/lists/* # buildkit
2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D
2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)ENV PYTHON_VERSION=3.10.15
2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; 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"; 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-system-expat --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="$(dpkg-buildflags --get CFLAGS)"; LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:-}" "PROFILE_TASK=${PROFILE_TASK:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" "PROFILE_TASK=${PROFILE_TASK:-}" python ; make install; bin="$(readlink -ve /usr/local/bin/python3)"; dir="$(dirname "$bin")"; mkdir -p "/usr/share/gdb/auto-load/$dir"; cp -vL Tools/gdb/libpython.py "/usr/share/gdb/auto-load/$bin-gdb.py"; 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; 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-09-09 17:16:05 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-09-09 17:16:05 UTC (buildkit.dockerfile.v0)CMD ["python3"]
2024-10-09 18:14:35 UTC (buildkit.dockerfile.v0)ARG BUILD_ANSIBLE_VARIATION=ansible
2024-10-09 18:14:35 UTC (buildkit.dockerfile.v0)ARG BUILD_ANSIBLE_PATCH_VERSION=9.11.0
2024-10-09 18:14:35 UTC (buildkit.dockerfile.v0)ARG PACKAGE_DEPENDENCIES=git,gosu,less,libffi-dev,libhdf5-dev,libssl-dev,openssh-client,sshpass
2024-10-09 18:14:35 UTC (buildkit.dockerfile.v0)ARG PUID=1000
2024-10-09 18:14:35 UTC (buildkit.dockerfile.v0)ARG PGID=1000
2024-10-09 18:14:35 UTC (buildkit.dockerfile.v0)ARG REPOSITORY_BUILD_VERSION=v0.4.0
2024-10-09 18:14:35 UTC (buildkit.dockerfile.v0)ENV DEBUG=false ANSIBLE_WORK_DIR=/ansible ANSIBLE_HOME=/etc/ansible ANSIBLE_COLLECTIONS_PATH=/etc/ansible/collections
2024-10-09 18:14:35 UTC (buildkit.dockerfile.v0)COPY --chown=root:root --chmod=755 src/rootfs / # buildkit
2024-10-09 18:18:25 UTC (buildkit.dockerfile.v0)RUN |6 BUILD_ANSIBLE_VARIATION=ansible BUILD_ANSIBLE_PATCH_VERSION=9.11.0 PACKAGE_DEPENDENCIES=git,gosu,less,libffi-dev,libhdf5-dev,libssl-dev,openssh-client,sshpass PUID=1000 PGID=1000 REPOSITORY_BUILD_VERSION=v0.4.0 /bin/sh -c serversideup-dep-install-alpine ${PACKAGE_DEPENDENCIES} && serversideup-dep-install-debian ${PACKAGE_DEPENDENCIES} && serversideup-create-unprivileged-user ansible "${PUID}" "${PGID}" && mkdir -p "${ANSIBLE_HOME}/tmp" && echo -e '[local]\nlocalhost ansible_host=127.0.0.1' > "${ANSIBLE_HOME}/hosts" && chown -R "${PUID}:${PGID}" "${ANSIBLE_HOME}" && chmod 1777 "${ANSIBLE_HOME}/tmp" && mkdir -p "${ANSIBLE_WORK_DIR}" && chown -R "${PUID}:${PGID}" "${ANSIBLE_WORK_DIR}" && mkdir -p /ssh && chmod 700 /ssh && chown "${PUID}:${PGID}" /ssh && ln -s /ssh /home/ansible/.ssh && echo "🤓 Installing ${BUILD_ANSIBLE_VARIATION}==${BUILD_ANSIBLE_PATCH_VERSION}" && pip3 install --no-cache-dir "${BUILD_ANSIBLE_VARIATION}==${BUILD_ANSIBLE_PATCH_VERSION}" && pip3 install --no-cache-dir ansible-lint passlib requests python-dateutil && ansible --version # buildkit
2024-10-09 18:18:25 UTC (buildkit.dockerfile.v0)LABEL org.opencontainers.image.title=serversideup/ansible org.opencontainers.image.description=Run Ansible anywhere with a lightwieght and powerful Docker image org.opencontainers.image.url=https://github.com/serversideup/docker-ansible org.opencontainers.image.source=https://github.com/serversideup/docker-ansible org.opencontainers.image.documentation=https://github.com/serversideup/docker-ansible org.opencontainers.image.vendor=ServerSideUp org.opencontainers.image.authors=Jay Rogers (@jaydrogers) org.opencontainers.image.version=v0.4.0 org.opencontainers.image.licenses=GPL-3.0-or-later
2024-10-09 18:18:25 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["/entrypoint.sh"]
2024-10-09 18:18:25 UTC (buildkit.dockerfile.v0)WORKDIR /ansible
2024-10-09 18:18:25 UTC (buildkit.dockerfile.v0)CMD ["ansible-playbook" "--version"]
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.