镜像构建历史
# 2026-03-27 21:33:50 0.00B 配置容器启动时运行的命令
ENTRYPOINT ["docker-entrypoint.sh"]
# 2026-03-27 21:33:50 160.00B 执行命令并创建新的镜像层
RUN |9 KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root /bin/sh -c chmod +x /usr/local/bin/docker-entrypoint.sh && chmod +x /usr/local/bin/entrypoint.d/* # buildkit
# 2026-03-27 21:33:50 479.00B 复制新文件或目录到容器中
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh # buildkit
# 2026-03-27 21:33:50 160.00B 复制新文件或目录到容器中
COPY entrypoint.d /usr/local/bin/entrypoint.d # buildkit
# 2026-03-27 21:33:50 142.00B 复制新文件或目录到容器中
COPY /root/conf/frpc.toml /etc/frp/ # buildkit
# 2026-03-27 21:33:50 16.66MB 复制新文件或目录到容器中
COPY /root/bin/frpc /usr/bin/ # buildkit
# 2026-03-27 21:27:15 0.00B 执行命令并创建新的镜像层
RUN |9 KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root /bin/sh -c if [ "${USER}" != "root" ] && [ ! -d "/home/${USER}" ] && [ "${PUID}" -ne 0 ] && [ "${PGID}" -ne 0 ]; then addgroup -g ${PGID} ${USER}; adduser -h /home/${USER} -u ${PUID} -g ${USER} -G ${USER} -s /bin/sh -D ${USER}; fi # buildkit
# 2026-03-27 21:27:15 0.00B 设置环境变量 KEEPALIVE CAP_NET_BIND_SERVICE LANG UMASK DEBUG PGID PUID USER WORKDIR
ENV KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
# 2026-03-27 21:27:15 0.00B 定义构建参数
ARG KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
# 2026-03-27 21:27:15 0.00B 设置工作目录为/root
WORKDIR /root
# 2026-03-27 21:27:15 0.00B 指定运行容器时使用的用户
USER root
# 2026-03-27 21:27:15 0.00B 添加元数据标签
LABEL org.opencontainers.image.authors=Snowdream Tech org.opencontainers.image.title=Frpc Image Based On Alpine org.opencontainers.image.description=Docker Images for Frpc on Alpine. (i386, amd64, arm32v6, arm32v7, arm64, ppc64le,riscv64, s390x) org.opencontainers.image.documentation=https://hub.docker.com/r/snowdreamtech/frpc org.opencontainers.image.base.name=snowdreamtech/frpc:alpine org.opencontainers.image.licenses=MIT org.opencontainers.image.source=https://github.com/snowdreamtech/frp org.opencontainers.image.vendor=Snowdream Tech org.opencontainers.image.version=0.68.0 org.opencontainers.image.url=https://github.com/snowdreamtech/frp
# 2026-01-20 07:39:51 0.00B 配置容器启动时运行的命令
ENTRYPOINT ["docker-entrypoint.sh"]
# 2026-01-20 07:39:51 1.01KB 执行命令并创建新的镜像层
RUN |9 KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root /bin/sh -c chmod +x /usr/local/bin/docker-entrypoint.sh && chmod +x /usr/local/bin/entrypoint.d/* # buildkit
# 2026-01-20 07:39:51 479.00B 复制新文件或目录到容器中
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh # buildkit
# 2026-01-20 07:39:51 1.01KB 复制新文件或目录到容器中
COPY entrypoint.d /usr/local/bin/entrypoint.d # buildkit
# 2026-01-20 07:39:51 0.00B 执行命令并创建新的镜像层
RUN |9 KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root /bin/sh -c if [ "${USER}" != "root" ] && [ ! -d "/home/${USER}" ] && [ "${PUID}" -ne 0 ] && [ "${PGID}" -ne 0 ]; then addgroup -g ${PGID} ${USER}; adduser -h /home/${USER} -u ${PUID} -g ${USER} -G ${USER} -s /bin/sh -D ${USER}; fi # buildkit
# 2026-01-20 07:39:51 92.12MB 执行命令并创建新的镜像层
RUN |9 KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root /bin/sh -c echo "@main https://dl-cdn.alpinelinux.org/alpine/edge/main" | tee -a /etc/apk/repositories && echo "@community https://dl-cdn.alpinelinux.org/alpine/edge/community" | tee -a /etc/apk/repositories && echo "@testing https://dl-cdn.alpinelinux.org/alpine/edge/testing" | tee -a /etc/apk/repositories && apk update && apk add --no-cache lsb-release doas sudo procps-ng vim zip unzip bzip2 xz file gzip jq busybox-suid musl-locales musl-locales-lang tzdata openssl gnupg sysstat wget curl git bind-tools netcat-openbsd traceroute iputils net-tools lsof libcap su-exec ca-certificates && update-ca-certificates # buildkit
# 2026-01-20 07:39:30 0.00B 设置环境变量 KEEPALIVE CAP_NET_BIND_SERVICE LANG UMASK DEBUG PGID PUID USER WORKDIR
ENV KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
# 2026-01-20 07:39:30 0.00B 定义构建参数
ARG KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
# 2026-01-20 07:39:30 0.00B 设置工作目录为/root
WORKDIR /root
# 2026-01-20 07:39:30 0.00B 指定运行容器时使用的用户
USER root
# 2026-01-20 07:39:30 0.00B 添加元数据标签
LABEL org.opencontainers.image.authors=Snowdream Tech org.opencontainers.image.title=Alpine Base Image org.opencontainers.image.description=Docker Images for Alpine. (i386, amd64, arm32v6, arm32v7, arm64, ppc64le,riscv64, s390x) org.opencontainers.image.documentation=https://hub.docker.com/r/snowdreamtech/alpine org.opencontainers.image.base.name=snowdreamtech/alpine:latest org.opencontainers.image.licenses=MIT org.opencontainers.image.source=https://github.com/snowdreamtech/alpine org.opencontainers.image.vendor=Snowdream Tech org.opencontainers.image.version=3.23.2 org.opencontainers.image.url=https://github.com/snowdreamtech/alpine
# 2025-12-18 08:12:29 0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
# 2025-12-18 08:12:29 8.44MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.23.2-x86_64.tar.gz / # buildkit
镜像信息
{
"Id": "sha256:914f64dc9daff41ea7e83818ef98216417570a16f1769d3734f02aeccddc3473",
"RepoTags": [
"snowdreamtech/frpc:0.68-alpine3.23",
"swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/snowdreamtech/frpc:0.68-alpine3.23"
],
"RepoDigests": [
"snowdreamtech/frpc@sha256:f13789df3f9b1462363a6f9ad0f61614fc1ea610b513131fb97b169e9cad56b8",
"swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/snowdreamtech/frpc@sha256:b4ddc5c8a57467a1e25662c825072018715a5b8355ef6d9d8b7d06dd3f5ecb30"
],
"Parent": "",
"Comment": "buildkit.dockerfile.v0",
"Created": "2026-03-27T13:33:50.732819034Z",
"Container": "",
"ContainerConfig": null,
"DockerVersion": "",
"Author": "",
"Config": {
"Hostname": "",
"Domainname": "",
"User": "root",
"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",
"KEEPALIVE=0",
"CAP_NET_BIND_SERVICE=0",
"LANG=C.UTF-8",
"UMASK=022",
"DEBUG=false",
"PGID=0",
"PUID=0",
"USER=root",
"WORKDIR=/root"
],
"Cmd": null,
"Image": "",
"Volumes": null,
"WorkingDir": "/root",
"Entrypoint": [
"docker-entrypoint.sh"
],
"OnBuild": null,
"Labels": {
"org.opencontainers.image.authors": "Snowdream Tech",
"org.opencontainers.image.base.name": "snowdreamtech/frpc:alpine",
"org.opencontainers.image.created": "2026-03-27T13:27:08.702Z",
"org.opencontainers.image.description": "Docker Images for Frp.",
"org.opencontainers.image.documentation": "https://hub.docker.com/r/snowdreamtech/frpc",
"org.opencontainers.image.licenses": "MIT",
"org.opencontainers.image.revision": "a2490625dde89c738e2256d1ea58a807ea89b664",
"org.opencontainers.image.source": "https://github.com/snowdreamtech/frp",
"org.opencontainers.image.title": "frp",
"org.opencontainers.image.url": "https://github.com/snowdreamtech/frp",
"org.opencontainers.image.vendor": "Snowdream Tech",
"org.opencontainers.image.version": "0.68.0"
}
},
"Architecture": "amd64",
"Os": "linux",
"Size": 117223653,
"GraphDriver": {
"Data": {
"LowerDir": "/var/lib/docker/overlay2/ed77d2c672a9f582bbbe4d8efffd408110421650fc9ca425652282c475126522/diff:/var/lib/docker/overlay2/092990943df899691ca7501869c6d0a999ba8fbcb2a1a867332ae68b5ae65346/diff:/var/lib/docker/overlay2/7ceff2189f88c1a118bdc8b388016084f409e25ea1b187b77b301489a40c50fd/diff:/var/lib/docker/overlay2/fcd0d1345329b18ba5a9d7451d8c5194d4e3ca715eebba48b821796be45f9212/diff:/var/lib/docker/overlay2/18c197404d1dcbd5c8d85aed26bf8f83af284a728104de5e6d6cb06f0de5d34b/diff:/var/lib/docker/overlay2/045afb0c8a79bae8c935e5d8efc0e8f45752cb697b404df16ded1b69d0299ecc/diff:/var/lib/docker/overlay2/030b63be076e1abf855d5c282f95465bdac42cc5cdea04f6a966f3e0f5969ceb/diff:/var/lib/docker/overlay2/41eb2374873fa7b342a92866fa331223150426c47df5a3852571c9cda1c97195/diff:/var/lib/docker/overlay2/03d3371a19a91647d12d69f2f014b350e0dd24f1ee78cb0be96946bd30df802f/diff:/var/lib/docker/overlay2/e743db679390f0639508b4e63d3b51b38d6dc0b46e8a9ce658889c15aa4b0783/diff:/var/lib/docker/overlay2/ddae679bad3ffdeacf172b62d40c80ec78a792cdfc61f4b77691543c8882f509/diff:/var/lib/docker/overlay2/79858a56bd3a7d4b98679851b60f41fb8e1c7662388a6083126f06d991c20a66/diff:/var/lib/docker/overlay2/fdc5e5689601dc92f6e20c665524fba39f8cab962b793bba8d800e1bb195a0a2/diff",
"MergedDir": "/var/lib/docker/overlay2/dd956c3f8185351d95fe16c38fed831f7a3c8d3d273fc4b373745c10e0364530/merged",
"UpperDir": "/var/lib/docker/overlay2/dd956c3f8185351d95fe16c38fed831f7a3c8d3d273fc4b373745c10e0364530/diff",
"WorkDir": "/var/lib/docker/overlay2/dd956c3f8185351d95fe16c38fed831f7a3c8d3d273fc4b373745c10e0364530/work"
},
"Name": "overlay2"
},
"RootFS": {
"Type": "layers",
"Layers": [
"sha256:7bb20cf5ef67526cb843d264145241ce4dde09a337b5be1be42ba464de9a672d",
"sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
"sha256:78ba7037e6021a26ac5175930ad0d3f610e8a1f022ae8454d0534627f7a9b4b4",
"sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
"sha256:9ca3e23670edeb7c23f1d1d18bcd4e8ed9e5809dea99133fdd49fabfa5f226d8",
"sha256:85e05587e424cd36ec19074e950e37310acfb3b823b0e557cfd2bb951833cdd1",
"sha256:11646297ef956eabaff967efca20053c718615733a350b79883af5b88223fec5",
"sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
"sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
"sha256:6010dce634fae1bb6e0f27dd50e26884c0bf2773deb55f4e7859b7f3856e2a6c",
"sha256:53c6f2d556e9be225a56a9939f74115fcc9d6365e63e6ef928b47516bd46def3",
"sha256:0165bf975faada2c6d6995fdcef64055489b29f49b480c33acec4a942aecdcff",
"sha256:0715681c701638b7df596f02118aaebf23f9fa310f5982c3eb9c5ae31aa9d4e8",
"sha256:e0ca040eb74d26335da9a50248a9d0a71a106421ad1360d2c49e4022b3e8b0c6"
]
},
"Metadata": {
"LastTagTime": "2026-04-02T08:47:27.046543835+08:00"
}
}