docker.io/woodpeckerci/plugin-ready-release-go:3.4.0 linux/amd64

docker.io/woodpeckerci/plugin-ready-release-go:3.4.0 - 国内下载镜像源 浏览次数:11
源镜像 docker.io/woodpeckerci/plugin-ready-release-go:3.4.0
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/woodpeckerci/plugin-ready-release-go:3.4.0
镜像ID sha256:542524951de65061c7e4777cd91bbac4b1fc00e83b6dcf6b434341dec481b2d4
镜像TAG 3.4.0
大小 416.54MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD /app/node_modules/.bin/tsx /app/src/run.ts
启动入口 docker-entrypoint.sh
工作目录 /app
OS/平台 linux/amd64
浏览量 11 次
贡献者
镜像创建 2025-08-04T11:23:16Z
同步时间 2025-11-06 14:24
更新时间 2025-11-07 05:55
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin NODE_VERSION=22.18.0 YARN_VERSION=1.22.22 NODE_ENV=production
镜像标签
2025-08-04T11:23:44Z: org.opencontainers.image.created 48a01f5e4920e68279b8ac7453813c565be16d3e: org.opencontainers.image.revision https://github.com/woodpecker-ci/plugin-ready-release-go.git: org.opencontainers.image.source https://github.com/woodpecker-ci/plugin-ready-release-go: org.opencontainers.image.url 3.4.0: org.opencontainers.image.version

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/woodpeckerci/plugin-ready-release-go:3.4.0
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/woodpeckerci/plugin-ready-release-go:3.4.0  docker.io/woodpeckerci/plugin-ready-release-go:3.4.0

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/woodpeckerci/plugin-ready-release-go:3.4.0
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/woodpeckerci/plugin-ready-release-go:3.4.0  docker.io/woodpeckerci/plugin-ready-release-go:3.4.0

Shell快速替换命令

sed -i 's#woodpeckerci/plugin-ready-release-go:3.4.0#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/woodpeckerci/plugin-ready-release-go:3.4.0#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/woodpeckerci/plugin-ready-release-go:3.4.0 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/woodpeckerci/plugin-ready-release-go:3.4.0  docker.io/woodpeckerci/plugin-ready-release-go:3.4.0'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/woodpeckerci/plugin-ready-release-go:3.4.0 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/woodpeckerci/plugin-ready-release-go:3.4.0  docker.io/woodpeckerci/plugin-ready-release-go:3.4.0'

镜像构建历史


# 2025-08-04 19:23:16  0.00B 设置默认要执行的命令
CMD ["/app/node_modules/.bin/tsx" "/app/src/run.ts"]
                        
# 2025-08-04 19:23:16  72.66KB 复制新文件或目录到容器中
COPY src ./src # buildkit
                        
# 2025-08-04 19:23:16  192.00B 复制新文件或目录到容器中
COPY tsconfig.json ./tsconfig.json # buildkit
                        
# 2025-08-04 19:23:16  75.77MB 复制新文件或目录到容器中
COPY /app/node_modules ./node_modules # buildkit
                        
# 2025-08-04 19:23:16  116.55MB 执行命令并创建新的镜像层
RUN /bin/sh -c apt update   && apt install -y git git-lfs wget   && apt-get clean   && rm -rf /var/lib/apt/lists/* # buildkit
                        
# 2025-08-04 19:23:16  0.00B 设置环境变量 NODE_ENV
ENV NODE_ENV=production
                        
# 2025-08-04 19:23:16  0.00B 设置工作目录为/app
WORKDIR /app
                        
# 2025-08-01 18:06:16  0.00B 设置默认要执行的命令
CMD ["node"]
                        
# 2025-08-01 18:06:16  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["docker-entrypoint.sh"]
                        
# 2025-08-01 18:06:16  388.00B 复制新文件或目录到容器中
COPY docker-entrypoint.sh /usr/local/bin/ # buildkit
                        
# 2025-08-01 18:06:16  7.18MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -ex   && savedAptMark="$(apt-mark showmanual)"   && apt-get update && apt-get install -y ca-certificates curl wget gnupg dirmngr --no-install-recommends   && rm -rf /var/lib/apt/lists/*   && export GNUPGHOME="$(mktemp -d)"   && for key in     6A010C5166006599AA17F08146C2130DFD2497F5   ; do     { gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$key" && gpg --batch --fingerprint "$key"; } ||     { gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key" && gpg --batch --fingerprint "$key"; } ;   done   && curl -fsSLO --compressed "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz"   && curl -fsSLO --compressed "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz.asc"   && gpg --batch --verify yarn-v$YARN_VERSION.tar.gz.asc yarn-v$YARN_VERSION.tar.gz   && gpgconf --kill all   && rm -rf "$GNUPGHOME"   && mkdir -p /opt   && tar -xzf yarn-v$YARN_VERSION.tar.gz -C /opt/   && ln -s /opt/yarn-v$YARN_VERSION/bin/yarn /usr/local/bin/yarn   && ln -s /opt/yarn-v$YARN_VERSION/bin/yarnpkg /usr/local/bin/yarnpkg   && rm yarn-v$YARN_VERSION.tar.gz.asc yarn-v$YARN_VERSION.tar.gz   && apt-mark auto '.*' > /dev/null   && { [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; }   && find /usr/local -type f -executable -exec ldd '{}' ';'     | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print 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   && yarn --version   && rm -rf /tmp/* # buildkit
                        
# 2025-08-01 18:06:16  0.00B 设置环境变量 YARN_VERSION
ENV YARN_VERSION=1.22.22
                        
# 2025-08-01 18:06:16  142.15MB 执行命令并创建新的镜像层
RUN /bin/sh -c ARCH= OPENSSL_ARCH= && dpkgArch="$(dpkg --print-architecture)"     && case "${dpkgArch##*-}" in       amd64) ARCH='x64' OPENSSL_ARCH='linux-x86_64';;       ppc64el) ARCH='ppc64le' OPENSSL_ARCH='linux-ppc64le';;       s390x) ARCH='s390x' OPENSSL_ARCH='linux*-s390x';;       arm64) ARCH='arm64' OPENSSL_ARCH='linux-aarch64';;       armhf) ARCH='armv7l' OPENSSL_ARCH='linux-armv4';;       i386) ARCH='x86' OPENSSL_ARCH='linux-elf';;       *) echo "unsupported architecture"; exit 1 ;;     esac     && set -ex     && apt-get update && apt-get install -y ca-certificates curl wget gnupg dirmngr xz-utils libatomic1 --no-install-recommends     && rm -rf /var/lib/apt/lists/*     && export GNUPGHOME="$(mktemp -d)"     && for key in       5BE8A3F6C8A5C01D106C0AD820B1A390B168D356       DD792F5973C6DE52C432CBDAC77ABFA00DDBF2B7       CC68F5A3106FF448322E48ED27F5E38D5B0A215F       8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600       890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4       C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C       108F52B48DB57BB0CC439B2997B01419BD92F80A       A363A499291CBBC940DD62E41F10027AF002F8B0     ; do       { gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$key" && gpg --batch --fingerprint "$key"; } ||       { gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key" && gpg --batch --fingerprint "$key"; } ;     done     && curl -fsSLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-$ARCH.tar.xz"     && curl -fsSLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc"     && gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc     && gpgconf --kill all     && rm -rf "$GNUPGHOME"     && grep " node-v$NODE_VERSION-linux-$ARCH.tar.xz\$" SHASUMS256.txt | sha256sum -c -     && tar -xJf "node-v$NODE_VERSION-linux-$ARCH.tar.xz" -C /usr/local --strip-components=1 --no-same-owner     && rm "node-v$NODE_VERSION-linux-$ARCH.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt     && find /usr/local/include/node/openssl/archs -mindepth 1 -maxdepth 1 ! -name "$OPENSSL_ARCH" -exec rm -rf {} \;     && apt-mark auto '.*' > /dev/null     && find /usr/local -type f -executable -exec ldd '{}' ';'       | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print 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     && ln -s /usr/local/bin/node /usr/local/bin/nodejs     && node --version     && npm --version     && rm -rf /tmp/* # buildkit
                        
# 2025-08-01 18:06:16  0.00B 设置环境变量 NODE_VERSION
ENV NODE_VERSION=22.18.0
                        
# 2025-08-01 18:06:16  8.90KB 执行命令并创建新的镜像层
RUN /bin/sh -c groupadd --gid 1000 node   && useradd --uid 1000 --gid node --shell /bin/bash --create-home node # buildkit
                        
# 2025-07-21 08:00:00  74.81MB 
# debian.sh --arch 'amd64' out/ 'bookworm' '@1753056000'
                        
                    

镜像信息

{
    "Id": "sha256:542524951de65061c7e4777cd91bbac4b1fc00e83b6dcf6b434341dec481b2d4",
    "RepoTags": [
        "woodpeckerci/plugin-ready-release-go:3.4.0",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/woodpeckerci/plugin-ready-release-go:3.4.0"
    ],
    "RepoDigests": [
        "woodpeckerci/plugin-ready-release-go@sha256:15dc7e06c0583b623bcf98cb001a9ffd9c820698157a2c1c220917f2155c0040",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/woodpeckerci/plugin-ready-release-go@sha256:ed27df2d773a42c50f11a695ba547422194778c55a7364da93debe087c273ea8"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-08-04T11:23:16Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "NODE_VERSION=22.18.0",
            "YARN_VERSION=1.22.22",
            "NODE_ENV=production"
        ],
        "Cmd": [
            "/app/node_modules/.bin/tsx",
            "/app/src/run.ts"
        ],
        "ArgsEscaped": true,
        "Image": "",
        "Volumes": null,
        "WorkingDir": "/app",
        "Entrypoint": [
            "docker-entrypoint.sh"
        ],
        "OnBuild": null,
        "Labels": {
            "org.opencontainers.image.created": "2025-08-04T11:23:44Z",
            "org.opencontainers.image.revision": "48a01f5e4920e68279b8ac7453813c565be16d3e",
            "org.opencontainers.image.source": "https://github.com/woodpecker-ci/plugin-ready-release-go.git",
            "org.opencontainers.image.url": "https://github.com/woodpecker-ci/plugin-ready-release-go",
            "org.opencontainers.image.version": "3.4.0"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 416540338,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/a3da0eabd51cc01b71ec62fe45b01cd2ea49190dcfc6fda933c724349ef8ec1d/diff:/var/lib/docker/overlay2/dfcff00ad0006970dc09f064b976b9ba941be7136c508c67ecf71528be6c8a69/diff:/var/lib/docker/overlay2/22860ebf8e9352cce7491ae7b7c73d909b152cb1ae985882719dfffd33644b8e/diff:/var/lib/docker/overlay2/145d0d9ec0ce68456bde9a83e0437881e2b4e3a874eb6077b16b44b609231d74/diff:/var/lib/docker/overlay2/d41eb45cb8d70f8b85e3fcfe1e6fd9d5dfdb607b539964a1c2dd1249ef506358/diff:/var/lib/docker/overlay2/ec439cd873b073ba1c70848fab647d0ea6fa72dff8bf944780eb7350493df707/diff:/var/lib/docker/overlay2/db28021c30d4663e1f04a32a1fee9774d0c6ba478169aa2cb537a0480135ef1d/diff:/var/lib/docker/overlay2/8245b894e997546e6e898edb74fc459ed8cb2b5187710742e7d6891aba57ca09/diff:/var/lib/docker/overlay2/c6703beea21e20c7bef8e464b489113a7b43ee72876c9b6bfbe3d51261681953/diff",
            "MergedDir": "/var/lib/docker/overlay2/b922149b4d1f9e6f27c504f9ec7472d726dfca2de4ae0d5d220a4bcbd389d841/merged",
            "UpperDir": "/var/lib/docker/overlay2/b922149b4d1f9e6f27c504f9ec7472d726dfca2de4ae0d5d220a4bcbd389d841/diff",
            "WorkDir": "/var/lib/docker/overlay2/b922149b4d1f9e6f27c504f9ec7472d726dfca2de4ae0d5d220a4bcbd389d841/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:7cc7fe68eff66f19872441a51938eecc4ad33746d2baa3abc081c1e6fe25988e",
            "sha256:165b1cafcc9a98672ee089ca41c4de53e6eb8c45e4c8f9a995fb67a613fcde14",
            "sha256:9008f886dec6cf194140c80913b8a4e175701ebd70d23ef647958e2e67d155cb",
            "sha256:cf4b4304cca62d8dbaddc6650e063cb6afcad5706c2af56a2e85183664d951c6",
            "sha256:14dddda052257d05463b1f3a82b543024ba9d450843a17f9722729edd24a5942",
            "sha256:fbd8858b17bd65367bfbb1da8e2acfcf74558bfaac61c8268b71514c77416d82",
            "sha256:57fc46e79c41b9692f8e0d45ba9d11bb0eee9d13826d04d91a6a989af4c154fe",
            "sha256:dbf3d476c81e67ab430a5e6c046ffd6d9726c01ed41f0d0361c1e4c6ca12d576",
            "sha256:3b6653e844db874af04d8f84bd2a748c5c9c1b4ab40d7fac42e5f14cf2d79922",
            "sha256:a1a55790f2959376bd259ba8541bdc802005c70115bb31f2d748dba995b54af5"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-11-06T14:24:32.603307325+08:00"
    }
}

更多版本

docker.io/woodpeckerci/plugin-ready-release-go:3.4.0

linux/amd64 docker.io416.54MB2025-11-06 14:24
10