2025-09-24 22:48:59 UTC
416 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_SHA256ae665bc678abd9ab6a6e1573d2481625a53719bc517e9a634ed2b9fefae3817f
PYTHON_VERSION3.10.18
[#000] sha256:632ef5283d0fcf0e3a19d6c5dbcc294922d142b506d2ab494fb73004518cdc31 - 12.33% (51.3 MB)
[#001] sha256:2be42d221bda6286090b1656c911554463aed2c0d506c236e16250de9b9e4667 - 3.62% (15 MB)
[#002] sha256:54d1704eb717ce17ad2843f567b5defc32883042e6e9f97e2bcf2ce3c282677b - 12.56% (52.2 MB)
[#003] sha256:f0f51ee5c79e1ef5812268320c854e2eaf0bb5f4e2cf2a7974448200d36854de - 45.21% (188 MB)
[#004] sha256:c335e23a95c96be97086d18c78a39f9298abea139688e5affbf35445b1d1a4f9 - 1.39% (5.77 MB)
[#005] sha256:13d0b765888746f9919e2163d68c543af005566a021cb591978365f72cdbfde2 - 4.96% (20.6 MB)
[#006] sha256:7304275f76b4b257cd5b3f742ae91b913d337f59e5ae9f9f336d32d9afb71953 - 0.0% (249 Bytes)
[#007] sha256:e4535a35b6d9bcd13116c6fa921e677ca83a4f2ec15c17541193b871fb2c171f - 0.0% (2.29 KB)
[#008] sha256:e2b00aea59a5e97587dbfb76cbf68e1f389553456f5eb739747a953f9d81a43e - 19.94% (82.9 MB)
[#009] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
# debian.sh --arch 'amd64' out/ 'bullseye' '@1753056000'
2023-04-28 21:58:08 UTC (buildkit.dockerfile.v0)RUN /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/* # buildkit
2024-01-09 01:14:25 UTC (buildkit.dockerfile.v0)RUN /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/* # buildkit
2024-01-09 01:14:25 UTC (buildkit.dockerfile.v0)RUN /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/* # buildkit
2025-06-03 21:49:13 UTC (buildkit.dockerfile.v0)ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2025-06-03 21:49:13 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2025-06-03 21:49:13 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
2025-06-03 21:49:13 UTC (buildkit.dockerfile.v0)ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D
2025-06-03 21:49:13 UTC (buildkit.dockerfile.v0)ENV PYTHON_VERSION=3.10.18
2025-06-03 21:49:13 UTC (buildkit.dockerfile.v0)ENV PYTHON_SHA256=ae665bc678abd9ab6a6e1573d2481625a53719bc517e9a634ed2b9fefae3817f
2025-06-03 21:49:13 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"; 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 $(test "$gnuArch" != 'riscv64-linux-musl' && echo '--with-lto') --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="$(dpkg-buildflags --get CFLAGS)"; LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"; 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; 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<0.46' ; pip3 --version # buildkit
2025-06-03 21:49:13 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
2025-06-03 21:49:13 UTC (buildkit.dockerfile.v0)CMD ["python3"]
2025-09-24 22:48:29 UTC (buildkit.dockerfile.v0)ARG BUILD_ANSIBLE_VARIATION=ansible
2025-09-24 22:48:29 UTC (buildkit.dockerfile.v0)ARG BUILD_ANSIBLE_PATCH_VERSION=8.7.0
2025-09-24 22:48:29 UTC (buildkit.dockerfile.v0)ARG PACKAGE_DEPENDENCIES=git,gosu,jq,less,libffi-dev,libhdf5-dev,libssl-dev,openssh-client,sshpass
2025-09-24 22:48:29 UTC (buildkit.dockerfile.v0)ARG PUID=1000
2025-09-24 22:48:29 UTC (buildkit.dockerfile.v0)ARG PGID=1000
2025-09-24 22:48:29 UTC (buildkit.dockerfile.v0)ARG REPOSITORY_BUILD_VERSION=v1.0.2-beta3
2025-09-24 22:48:29 UTC (buildkit.dockerfile.v0)ENV DEBUG=false ANSIBLE_WORK_DIR=/ansible ANSIBLE_HOME=/etc/ansible ANSIBLE_COLLECTIONS_PATH=/etc/ansible/collections
2025-09-24 22:48:29 UTC (buildkit.dockerfile.v0)COPY --chown=root:root --chmod=755 src/rootfs / # buildkit
2025-09-24 22:48:59 UTC (buildkit.dockerfile.v0)RUN |6 BUILD_ANSIBLE_VARIATION=ansible BUILD_ANSIBLE_PATCH_VERSION=8.7.0 PACKAGE_DEPENDENCIES=git,gosu,jq,less,libffi-dev,libhdf5-dev,libssl-dev,openssh-client,sshpass PUID=1000 PGID=1000 REPOSITORY_BUILD_VERSION=v1.0.2-beta3 /bin/sh -c serversideup-dep-install-alpine ${PACKAGE_DEPENDENCIES} && serversideup-dep-install-debian ${PACKAGE_DEPENDENCIES} && ARCH=$(uname -m) && if [ "${ARCH}" = "x86_64" ]; then YQ_BINARY="yq_linux_amd64"; elif [ "${ARCH}" = "aarch64" ]; then YQ_BINARY="yq_linux_arm64"; else echo "Unsupported architecture: ${ARCH}"; exit 1; fi && if [ -f /etc/alpine-release ]; then wget https://github.com/mikefarah/yq/releases/latest/download/${YQ_BINARY} -O /usr/bin/yq && chmod +x /usr/bin/yq; else wget -qO /usr/local/bin/yq https://github.com/mikefarah/yq/releases/latest/download/${YQ_BINARY} && chmod a+x /usr/local/bin/yq; fi && 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
2025-09-24 22:48:59 UTC (buildkit.dockerfile.v0)LABEL org.opencontainers.image.title=serversideup/ansible org.opencontainers.image.description=Run Ansible anywhere with a lightweight 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=v1.0.2-beta3 org.opencontainers.image.licenses=GPL-3.0-or-later
2025-09-24 22:48:59 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["/entrypoint.sh"]
2025-09-24 22:48:59 UTC (buildkit.dockerfile.v0)WORKDIR /ansible
2025-09-24 22:48:59 UTC (buildkit.dockerfile.v0)CMD ["ansible-playbook" "--version"]
2025-09-24 22:53:01 UTC
405 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_SHA256ae665bc678abd9ab6a6e1573d2481625a53719bc517e9a634ed2b9fefae3817f
PYTHON_VERSION3.10.18
[#000] sha256:b26972d9a448e4dba0ac85216372d6ee52bc89839590b4e97f94b77ced5571fe - 12.29% (49.8 MB)
[#001] sha256:a9acb5a6634ff8f020bd4562c483cdd83503103d2c080d87e777643b57123e41 - 3.71% (15 MB)
[#002] sha256:6a887974b056452b76229e3392cbf8513e741cd3dcd1f05e7397eea6fce361a0 - 12.91% (52.3 MB)
[#003] sha256:5719a0bcd2a90c155586f3a0459add493dbdddf6c85818b75e1d8b233c59fa55 - 44.72% (181 MB)
[#004] sha256:d12e6cb5df000600505d626b8561494365b1185423266f101e1aa3a606367d94 - 1.45% (5.88 MB)
[#005] sha256:6eacc0d94d7f130bb4625c8b77a28b261f34c39a8b0aab3001354a0fa3499f37 - 5.01% (20.3 MB)
[#006] sha256:5eff48df753b0c855ec0e45726ad050531dfdedb8cd5b3e280ce94ae6bb957bf - 0.0% (252 Bytes)
[#007] sha256:e4535a35b6d9bcd13116c6fa921e677ca83a4f2ec15c17541193b871fb2c171f - 0.0% (2.29 KB)
[#008] sha256:a5cac7383905979ade97e4304013f21eec0f2b7489d3fcae661ebbb81ee48d7a - 19.91% (80.7 MB)
[#009] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
# debian.sh --arch 'arm64' out/ 'bullseye' '@1753056000'
2023-04-28 21:58:08 UTC (buildkit.dockerfile.v0)RUN /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/* # buildkit
2024-01-09 01:14:25 UTC (buildkit.dockerfile.v0)RUN /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/* # buildkit
2024-01-09 01:14:25 UTC (buildkit.dockerfile.v0)RUN /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/* # buildkit
2025-06-03 21:49:13 UTC (buildkit.dockerfile.v0)ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2025-06-03 21:49:13 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2025-06-03 21:49:13 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
2025-06-03 21:49:13 UTC (buildkit.dockerfile.v0)ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D
2025-06-03 21:49:13 UTC (buildkit.dockerfile.v0)ENV PYTHON_VERSION=3.10.18
2025-06-03 21:49:13 UTC (buildkit.dockerfile.v0)ENV PYTHON_SHA256=ae665bc678abd9ab6a6e1573d2481625a53719bc517e9a634ed2b9fefae3817f
2025-06-03 21:49:13 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"; 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 $(test "$gnuArch" != 'riscv64-linux-musl' && echo '--with-lto') --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="$(dpkg-buildflags --get CFLAGS)"; LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"; 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; 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<0.46' ; pip3 --version # buildkit
2025-06-03 21:49:13 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
2025-06-03 21:49:13 UTC (buildkit.dockerfile.v0)CMD ["python3"]
2025-09-24 22:48:29 UTC (buildkit.dockerfile.v0)ARG BUILD_ANSIBLE_VARIATION=ansible
2025-09-24 22:48:29 UTC (buildkit.dockerfile.v0)ARG BUILD_ANSIBLE_PATCH_VERSION=8.7.0
2025-09-24 22:48:29 UTC (buildkit.dockerfile.v0)ARG PACKAGE_DEPENDENCIES=git,gosu,jq,less,libffi-dev,libhdf5-dev,libssl-dev,openssh-client,sshpass
2025-09-24 22:48:29 UTC (buildkit.dockerfile.v0)ARG PUID=1000
2025-09-24 22:48:29 UTC (buildkit.dockerfile.v0)ARG PGID=1000
2025-09-24 22:48:29 UTC (buildkit.dockerfile.v0)ARG REPOSITORY_BUILD_VERSION=v1.0.2-beta3
2025-09-24 22:48:29 UTC (buildkit.dockerfile.v0)ENV DEBUG=false ANSIBLE_WORK_DIR=/ansible ANSIBLE_HOME=/etc/ansible ANSIBLE_COLLECTIONS_PATH=/etc/ansible/collections
2025-09-24 22:48:29 UTC (buildkit.dockerfile.v0)COPY --chown=root:root --chmod=755 src/rootfs / # buildkit
2025-09-24 22:53:00 UTC (buildkit.dockerfile.v0)RUN |6 BUILD_ANSIBLE_VARIATION=ansible BUILD_ANSIBLE_PATCH_VERSION=8.7.0 PACKAGE_DEPENDENCIES=git,gosu,jq,less,libffi-dev,libhdf5-dev,libssl-dev,openssh-client,sshpass PUID=1000 PGID=1000 REPOSITORY_BUILD_VERSION=v1.0.2-beta3 /bin/sh -c serversideup-dep-install-alpine ${PACKAGE_DEPENDENCIES} && serversideup-dep-install-debian ${PACKAGE_DEPENDENCIES} && ARCH=$(uname -m) && if [ "${ARCH}" = "x86_64" ]; then YQ_BINARY="yq_linux_amd64"; elif [ "${ARCH}" = "aarch64" ]; then YQ_BINARY="yq_linux_arm64"; else echo "Unsupported architecture: ${ARCH}"; exit 1; fi && if [ -f /etc/alpine-release ]; then wget https://github.com/mikefarah/yq/releases/latest/download/${YQ_BINARY} -O /usr/bin/yq && chmod +x /usr/bin/yq; else wget -qO /usr/local/bin/yq https://github.com/mikefarah/yq/releases/latest/download/${YQ_BINARY} && chmod a+x /usr/local/bin/yq; fi && 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
2025-09-24 22:53:00 UTC (buildkit.dockerfile.v0)LABEL org.opencontainers.image.title=serversideup/ansible org.opencontainers.image.description=Run Ansible anywhere with a lightweight 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=v1.0.2-beta3 org.opencontainers.image.licenses=GPL-3.0-or-later
2025-09-24 22:53:00 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["/entrypoint.sh"]
2025-09-24 22:53:01 UTC (buildkit.dockerfile.v0)WORKDIR /ansible
2025-09-24 22:53:01 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.