2025-12-07 19:27:52 UTC
22.6 MB
0
DEBUGfalse
KEEPALIVE0
LANGC.UTF-8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGID0
PUID0
UMASK022
USERroot
WORKDIR/root
[#000] sha256:13c6e95c06ae06f126f5e940d6d88c2fec0da715c80878ad225c76ad48d0a31e - 15.28% (3.45 MB)
[#001] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#002] sha256:7ed64ba4ace29dcae35eafa74b9771d84d5e00ddc78e06c84910649620139fcd - 59.89% (13.5 MB)
[#003] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#004] sha256:5fcb196e6b2a2e986c375e61c6f0ccef45ea80556c7be53c40663365a8167f1a - 0.0% (830 Bytes)
[#005] sha256:ff5ea47fe7653edc0b4c5fc3c49bc1b359e2dab36a076fb263ac9f5f97f282b9 - 0.0% (405 Bytes)
[#006] sha256:4c00a904264646227f577a8599115a264f95d98907c42ec973855c663a7bbc5b - 0.0% (825 Bytes)
[#007] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#009] sha256:78faf0682419c2cf99a230623b9fc1d3f86112453000395ab672f84b0927a9fe - 24.82% (5.6 MB)
[#010] sha256:25fdad386875457f8cd261ba97f6f911b71131f09686d4fbc42d9e42e676a7e5 - 0.0% (247 Bytes)
[#011] sha256:7aa73d494a7c6f461ab623db48ac6e3a5f96fd6ec096d9d3955a1dee23d53757 - 0.0% (325 Bytes)
[#012] sha256:6f26611792924a201d12e68d89c6ab93acd17c66ec70805acf878a161a9c3004 - 0.0% (407 Bytes)
[#013] sha256:c8dbed25d5e9dd957522dd9efc3c6dd14271c5d7f04ac9b515bbc10ffbe90ca3 - 0.0% (319 Bytes)
ADD alpine-minirootfs-3.22.2-x86.tar.gz / # buildkit
2025-10-08 11:04:56 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh"]
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)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.22.2 org.opencontainers.image.url=https://github.com/snowdreamtech/alpine
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)USER root
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)WORKDIR /root
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)ARG KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)ENV KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-11-21 02:40:08 UTC (buildkit.dockerfile.v0)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 doas sudo busybox-suid musl-locales musl-locales-lang tzdata openssl wget curl git libcap su-exec ca-certificates && update-ca-certificates # buildkit
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)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
2025-11-21 08:47:42 UTC (buildkit.dockerfile.v0)COPY entrypoint.d /usr/local/bin/entrypoint.d # buildkit
2025-11-21 08:47:42 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh # buildkit
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)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
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)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.65.0 org.opencontainers.image.url=https://github.com/snowdreamtech/frp
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)USER root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)WORKDIR /root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)ARG KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)ENV KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)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
2025-12-07 19:27:51 UTC (buildkit.dockerfile.v0)COPY /root/bin/frpc /usr/bin/ # buildkit
2025-12-07 19:27:51 UTC (buildkit.dockerfile.v0)COPY /root/conf/frpc.toml /etc/frp/ # buildkit
2025-12-07 19:27:51 UTC (buildkit.dockerfile.v0)COPY entrypoint.d /usr/local/bin/entrypoint.d # buildkit
2025-12-07 19:27:51 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh # buildkit
2025-12-07 19:27:52 UTC (buildkit.dockerfile.v0)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
2025-12-07 19:27:52 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2025-12-07 19:28:18 UTC
23.6 MB
0
DEBUGfalse
KEEPALIVE0
LANGC.UTF-8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGID0
PUID0
UMASK022
USERroot
WORKDIR/root
[#000] sha256:2d35ebdb57d9971fea0cac1582aa78935adf8058b2cc32db163c98822e5dfa1b - 15.35% (3.63 MB)
[#001] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#002] sha256:07c3dfc8cbee354138df758e73c5b8367b166e5b030d163199ffa4ea4aefca20 - 59.3% (14 MB)
[#003] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#004] sha256:d0e1adaadb50983164349b8da774ccbfccb01fd94398cdcdefeab26dccd58beb - 0.0% (831 Bytes)
[#005] sha256:f8be5572dc40a70db920688001d6b2f5a7dfac43df78e58c6682d2918314a25b - 0.0% (407 Bytes)
[#006] sha256:2851db092de287402f2cdbbfee200ba84e806b348f211bfcd03ba8e6a16746b4 - 0.0% (826 Bytes)
[#007] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#009] sha256:92a823e105ba224979a1cf674630287735a23cc5510cfd0b2eed1341cc72efd4 - 25.33% (5.98 MB)
[#010] sha256:37de1ed69405654a1ca20e2526c535999ab457d660d9131e78b28639df9e1405 - 0.0% (242 Bytes)
[#011] sha256:41ece259b48ec93ee09007516b56d464c84af306c9c2366644f9ec0561c65c9d - 0.0% (327 Bytes)
[#012] sha256:45edd08968eb65820c1bfbcbeecf5c8d3f03b92fb3f5c95e440a9e0e636755de - 0.0% (408 Bytes)
[#013] sha256:e31699c8c202c87bb167c2f6f836792bf2780b4ff0e9bdfa27668e58ebd10d26 - 0.0% (320 Bytes)
ADD alpine-minirootfs-3.22.2-x86_64.tar.gz / # buildkit
2025-10-08 11:04:56 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh"]
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)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.22.2 org.opencontainers.image.url=https://github.com/snowdreamtech/alpine
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)USER root
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)WORKDIR /root
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)ARG KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)ENV KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-11-21 02:40:24 UTC (buildkit.dockerfile.v0)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 doas sudo busybox-suid musl-locales musl-locales-lang tzdata openssl wget curl git libcap su-exec ca-certificates && update-ca-certificates # buildkit
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)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
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)COPY entrypoint.d /usr/local/bin/entrypoint.d # buildkit
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh # buildkit
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)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
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)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.65.0 org.opencontainers.image.url=https://github.com/snowdreamtech/frp
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)USER root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)WORKDIR /root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)ARG KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)ENV KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)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
2025-12-07 19:28:18 UTC (buildkit.dockerfile.v0)COPY /root/bin/frpc /usr/bin/ # buildkit
2025-12-07 19:28:18 UTC (buildkit.dockerfile.v0)COPY /root/conf/frpc.toml /etc/frp/ # buildkit
2025-12-07 19:28:18 UTC (buildkit.dockerfile.v0)COPY entrypoint.d /usr/local/bin/entrypoint.d # buildkit
2025-12-07 19:28:18 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh # buildkit
2025-12-07 19:28:18 UTC (buildkit.dockerfile.v0)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
2025-12-07 19:28:18 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2025-12-07 19:27:51 UTC
22 MB
0
DEBUGfalse
KEEPALIVE0
LANGC.UTF-8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGID0
PUID0
UMASK022
USERroot
WORKDIR/root
[#000] sha256:bb1da3d879939be7df9f182950d2fb201d4fc2e1043677da2037cd6afb084ce0 - 15.18% (3.34 MB)
[#001] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#002] sha256:f7e4dddd0e25db12ee28c6669b71242af33d20cebfde090867dc3d79131509c1 - 59.64% (13.1 MB)
[#003] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#004] sha256:5e13913aca08a7e591806ab73cc03f029f845fd929723133c3675a80c4b0f9f2 - 0.0% (831 Bytes)
[#005] sha256:be6bedea1868b228a20fbf154a731f90095bda60b5407ec40acfbc23a1a90e2d - 0.0% (406 Bytes)
[#006] sha256:709822336320dcc30cf7f5eae2297650e6b13cd2c93de9662f730cba0cb67150 - 0.0% (826 Bytes)
[#007] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#009] sha256:99f0594e89c80a1f6876dc3b8a06bd14fcd2135a117d7e81f53780de3acfc390 - 25.17% (5.54 MB)
[#010] sha256:25fdad386875457f8cd261ba97f6f911b71131f09686d4fbc42d9e42e676a7e5 - 0.0% (247 Bytes)
[#011] sha256:8e1d575cfef8ccf9495e6df3a87af12d0c8d3858ae4d5ad4bc1f2e7f1d1b8b96 - 0.0% (326 Bytes)
[#012] sha256:30177d0515f2d320f39981c48cfa5d0b1d2fb17a9bc226b4d0f53984c224c80b - 0.0% (409 Bytes)
[#013] sha256:8ebe4386f392d26af47a95d85294de6dac8d973168fde55d71c77e36d76786e3 - 0.0% (319 Bytes)
ADD alpine-minirootfs-3.22.2-armhf.tar.gz / # buildkit
2025-10-08 11:04:56 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh"]
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)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.22.2 org.opencontainers.image.url=https://github.com/snowdreamtech/alpine
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)USER root
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)WORKDIR /root
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)ARG KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)ENV KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-11-21 02:40:30 UTC (buildkit.dockerfile.v0)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 doas sudo busybox-suid musl-locales musl-locales-lang tzdata openssl wget curl git libcap su-exec ca-certificates && update-ca-certificates # buildkit
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)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
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)COPY entrypoint.d /usr/local/bin/entrypoint.d # buildkit
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh # buildkit
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)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
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)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.65.0 org.opencontainers.image.url=https://github.com/snowdreamtech/frp
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)USER root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)WORKDIR /root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)ARG KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)ENV KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)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
2025-12-07 19:27:51 UTC (buildkit.dockerfile.v0)COPY /root/bin/frpc /usr/bin/ # buildkit
2025-12-07 19:27:51 UTC (buildkit.dockerfile.v0)COPY /root/conf/frpc.toml /etc/frp/ # buildkit
2025-12-07 19:27:51 UTC (buildkit.dockerfile.v0)COPY entrypoint.d /usr/local/bin/entrypoint.d # buildkit
2025-12-07 19:27:51 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh # buildkit
2025-12-07 19:27:51 UTC (buildkit.dockerfile.v0)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
2025-12-07 19:27:51 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2025-12-07 19:27:52 UTC
21.5 MB
0
DEBUGfalse
KEEPALIVE0
LANGC.UTF-8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGID0
PUID0
UMASK022
USERroot
WORKDIR/root
[#000] sha256:2763c7fc79b66030222442365f4a0f69d9dbaa11f7fd47a918d29d732d52996c - 14.26% (3.07 MB)
[#001] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#002] sha256:2c1162539a11db389da7f6063e11580abdd768a1d5e2f966fd4b95d5f3e80197 - 60.01% (12.9 MB)
[#003] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#004] sha256:fa132cc4bfea7d9037914482c41c81154b9d92311b96c39324c7b441441c7fe5 - 0.0% (831 Bytes)
[#005] sha256:72729d540c658d5d20d2b1ab566e5e783de0a5136bdac1b0e4d17b80740829b4 - 0.0% (407 Bytes)
[#006] sha256:7780322a37db26530b10c038ff9832190592147145298d61d7ca5e5c16a716bf - 0.0% (826 Bytes)
[#007] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#009] sha256:de4d13e2fe0ef2bc50d2610b12b45c990c484e3d8a3b52286b8d09a64c251e74 - 25.72% (5.54 MB)
[#010] sha256:25fdad386875457f8cd261ba97f6f911b71131f09686d4fbc42d9e42e676a7e5 - 0.0% (247 Bytes)
[#011] sha256:de1087e52580443d8ac1f212f7cf0a1456592f57bd5f361bc8050662bb58fd40 - 0.0% (327 Bytes)
[#012] sha256:ac72e25d4b77d7362494ec4c99e88a22be929606701bd8a7c4a0a8fb3fbace6a - 0.0% (408 Bytes)
[#013] sha256:ce11b73e3adc107b54e37d6704cb77f9597997d801085fb40f9fff4aac99a509 - 0.0% (319 Bytes)
ADD alpine-minirootfs-3.22.2-armv7.tar.gz / # buildkit
2025-10-08 11:04:56 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh"]
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)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.22.2 org.opencontainers.image.url=https://github.com/snowdreamtech/alpine
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)USER root
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)WORKDIR /root
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)ARG KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)ENV KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-11-21 02:40:21 UTC (buildkit.dockerfile.v0)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 doas sudo busybox-suid musl-locales musl-locales-lang tzdata openssl wget curl git libcap su-exec ca-certificates && update-ca-certificates # buildkit
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)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
2025-11-21 08:47:42 UTC (buildkit.dockerfile.v0)COPY entrypoint.d /usr/local/bin/entrypoint.d # buildkit
2025-11-21 08:47:42 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh # buildkit
2025-11-21 08:47:42 UTC (buildkit.dockerfile.v0)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
2025-11-21 08:47:42 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)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.65.0 org.opencontainers.image.url=https://github.com/snowdreamtech/frp
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)USER root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)WORKDIR /root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)ARG KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)ENV KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)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
2025-12-07 19:27:51 UTC (buildkit.dockerfile.v0)COPY /root/bin/frpc /usr/bin/ # buildkit
2025-12-07 19:27:51 UTC (buildkit.dockerfile.v0)COPY /root/conf/frpc.toml /etc/frp/ # buildkit
2025-12-07 19:27:51 UTC (buildkit.dockerfile.v0)COPY entrypoint.d /usr/local/bin/entrypoint.d # buildkit
2025-12-07 19:27:51 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh # buildkit
2025-12-07 19:27:52 UTC (buildkit.dockerfile.v0)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
2025-12-07 19:27:52 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2025-12-07 19:27:52 UTC
23.3 MB
0
DEBUGfalse
KEEPALIVE0
LANGC.UTF-8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGID0
PUID0
UMASK022
USERroot
WORKDIR/root
[#000] sha256:6b59a28fa20117e6048ad0616b8d8c901877ef15ff4c7f18db04e4f01f43bc39 - 16.93% (3.95 MB)
[#001] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#002] sha256:5750c0a63221452c633dd056de72a0e34aaf51e62d679b2612418a86d1c9561b - 59.93% (14 MB)
[#003] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#004] sha256:d87d50ee9e0f60b6f0489cb85a131854d2a536d95c300e6c2b3d3df9e29a8054 - 0.0% (831 Bytes)
[#005] sha256:28637754eef04dcd45f888781c1bbf43ac4295221089dc734d5c2b4272c95cba - 0.0% (409 Bytes)
[#006] sha256:1aa6186c0d8733a23eb35931bc1f2bd587e29d35620f86c0c46a4deb5b520fac - 0.0% (826 Bytes)
[#007] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#009] sha256:52cce51423d2992a224cbc6ebad5ca226e17b2a8cbe435dc421df074dc7664ed - 23.13% (5.39 MB)
[#010] sha256:93b1a8dd5b4801dda165a9c5630175bb64929091d13e0b604de040a0ba385758 - 0.0% (246 Bytes)
[#011] sha256:54e37873c3f3a2616d401cbb65428f496cb8a2ce540889cc65df506b281d2c3e - 0.0% (326 Bytes)
[#012] sha256:f0776937d81514e1a0be35e428e4f598735a24607c32eeeff797d69f6e1c2eb5 - 0.0% (407 Bytes)
[#013] sha256:995d99339f2be8881a4bf482b5db1bb5fbc6b920e64c2b3927d9fa885c971cd8 - 0.0% (318 Bytes)
ADD alpine-minirootfs-3.22.2-aarch64.tar.gz / # buildkit
2025-10-08 11:04:56 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh"]
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)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.22.2 org.opencontainers.image.url=https://github.com/snowdreamtech/alpine
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)USER root
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)WORKDIR /root
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)ARG KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)ENV KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-11-21 02:40:36 UTC (buildkit.dockerfile.v0)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 doas sudo busybox-suid musl-locales musl-locales-lang tzdata openssl wget curl git libcap su-exec ca-certificates && update-ca-certificates # buildkit
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)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
2025-11-21 08:47:42 UTC (buildkit.dockerfile.v0)COPY entrypoint.d /usr/local/bin/entrypoint.d # buildkit
2025-11-21 08:47:42 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh # buildkit
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)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
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)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.65.0 org.opencontainers.image.url=https://github.com/snowdreamtech/frp
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)USER root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)WORKDIR /root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)ARG KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)ENV KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)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
2025-12-07 19:27:51 UTC (buildkit.dockerfile.v0)COPY /root/bin/frpc /usr/bin/ # buildkit
2025-12-07 19:27:51 UTC (buildkit.dockerfile.v0)COPY /root/conf/frpc.toml /etc/frp/ # buildkit
2025-12-07 19:27:51 UTC (buildkit.dockerfile.v0)COPY entrypoint.d /usr/local/bin/entrypoint.d # buildkit
2025-12-07 19:27:51 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh # buildkit
2025-12-07 19:27:52 UTC (buildkit.dockerfile.v0)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
2025-12-07 19:27:52 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2025-12-07 19:27:52 UTC
22.8 MB
0
DEBUGfalse
KEEPALIVE0
LANGC.UTF-8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGID0
PUID0
UMASK022
USERroot
WORKDIR/root
[#000] sha256:85a0f69f026b4a01420490809bed190217e05518f7b718c0bbc1ad4871e0dedf - 15.63% (3.56 MB)
[#001] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#002] sha256:06f502d37cc211365079f322293fc9329081fa4dc48fd0266269c4cb2d0ad29f - 60.87% (13.9 MB)
[#003] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#004] sha256:2af4a28d5871d7c65c170357fb9d76c91e70609dbad6f1afc6e75b4099352408 - 0.0% (831 Bytes)
[#005] sha256:1b570caf9c25f301d48c36e79b2f017405dcaa8c074de32ee07d6906c64b147f - 0.0% (405 Bytes)
[#006] sha256:c391caa35697ac834f5479b7bf8a2c8d4a0ca67e8d513634d647f2c0f7517e1e - 0.0% (825 Bytes)
[#007] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#009] sha256:7691004cc86064c17209eb0372c5e8d6f1b1c29747ee8a015c0b3fe490fa504f - 23.48% (5.35 MB)
[#010] sha256:f7da8835439c4da1897a4aec22614e75b88480da429f221afd5791a2c244c744 - 0.0% (243 Bytes)
[#011] sha256:dd39289ecec749728f5373259c7f69bbfb848c0a577cf0cf14c830dcef9d9b7a - 0.0% (325 Bytes)
[#012] sha256:086e25fb7979557e75822c0ecc671acbb11432b8f4d5028d1de22349394566bf - 0.0% (408 Bytes)
[#013] sha256:39c689872e4ad34202d7717a855077669ebfc03c07e23f355b1b2ba234133e3a - 0.0% (319 Bytes)
ADD alpine-minirootfs-3.22.2-ppc64le.tar.gz / # buildkit
2025-10-08 11:04:56 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh"]
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)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.22.2 org.opencontainers.image.url=https://github.com/snowdreamtech/alpine
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)USER root
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)WORKDIR /root
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)ARG KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)ENV KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-11-21 02:40:36 UTC (buildkit.dockerfile.v0)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 doas sudo busybox-suid musl-locales musl-locales-lang tzdata openssl wget curl git libcap su-exec ca-certificates && update-ca-certificates # buildkit
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)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
2025-11-21 08:47:42 UTC (buildkit.dockerfile.v0)COPY entrypoint.d /usr/local/bin/entrypoint.d # buildkit
2025-11-21 08:47:42 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh # buildkit
2025-11-21 08:47:42 UTC (buildkit.dockerfile.v0)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
2025-11-21 08:47:42 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)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.65.0 org.opencontainers.image.url=https://github.com/snowdreamtech/frp
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)USER root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)WORKDIR /root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)ARG KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)ENV KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)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
2025-12-07 19:27:51 UTC (buildkit.dockerfile.v0)COPY /root/bin/frpc /usr/bin/ # buildkit
2025-12-07 19:27:51 UTC (buildkit.dockerfile.v0)COPY /root/conf/frpc.toml /etc/frp/ # buildkit
2025-12-07 19:27:51 UTC (buildkit.dockerfile.v0)COPY entrypoint.d /usr/local/bin/entrypoint.d # buildkit
2025-12-07 19:27:51 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh # buildkit
2025-12-07 19:27:52 UTC (buildkit.dockerfile.v0)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
2025-12-07 19:27:52 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2025-12-07 19:27:52 UTC
22.2 MB
0
DEBUGfalse
KEEPALIVE0
LANGC.UTF-8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGID0
PUID0
UMASK022
USERroot
WORKDIR/root
[#000] sha256:139bee3c50b89b56dcbc72522ce83097d9beb59d9d3a5c19072ccd1ad54b11c8 - 15.13% (3.35 MB)
[#001] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#002] sha256:bff82b78eeef232fe1a6fa209f93617f38ec1636be986689df8c595927f69f86 - 60.01% (13.3 MB)
[#003] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#004] sha256:6b5baba927ed96f587df0f3fa5ec13711c1bd615bd4a985660b022c0896f0e9b - 0.0% (831 Bytes)
[#005] sha256:42c773a3eabae0fe627fffd1d57f5fbe9fd943e37ac26ff507e5ca2cc5267573 - 0.0% (405 Bytes)
[#006] sha256:448422978b08cc91410787ec3cb1eb4d8250f9506b301bcd683346e12f272965 - 0.0% (827 Bytes)
[#007] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#009] sha256:058b4449cfc4c74ca2474a518a6e52232cf2a01b92c3ec6521744295f39645a6 - 24.84% (5.5 MB)
[#010] sha256:92381a19e6d9b9f81ffd72d005d6e538431972c1718dce8af820defb91b882a0 - 0.0% (243 Bytes)
[#011] sha256:f1adb8fb3622e2e41beb246d0355a8638b06901ccf57efd5c373be5ba5bb8fde - 0.0% (327 Bytes)
[#012] sha256:88273330ac498322546fb205fdf0c74504f6b9a2ce983be39f5edb678b1fc04e - 0.0% (408 Bytes)
[#013] sha256:7c66cb4f060c0935f84266fa7fae5fa206021b9bbf22a6fd488c0b5d4aafb078 - 0.0% (318 Bytes)
ADD alpine-minirootfs-3.22.2-riscv64.tar.gz / # buildkit
2025-10-08 11:04:56 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh"]
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)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.22.2 org.opencontainers.image.url=https://github.com/snowdreamtech/alpine
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)USER root
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)WORKDIR /root
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)ARG KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)ENV KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-11-21 02:40:19 UTC (buildkit.dockerfile.v0)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 doas sudo busybox-suid musl-locales musl-locales-lang tzdata openssl wget curl git libcap su-exec ca-certificates && update-ca-certificates # buildkit
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)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
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)COPY entrypoint.d /usr/local/bin/entrypoint.d # buildkit
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh # buildkit
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)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
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)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.65.0 org.opencontainers.image.url=https://github.com/snowdreamtech/frp
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)USER root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)WORKDIR /root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)ARG KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)ENV KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)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
2025-12-07 19:27:52 UTC (buildkit.dockerfile.v0)COPY /root/bin/frpc /usr/bin/ # buildkit
2025-12-07 19:27:52 UTC (buildkit.dockerfile.v0)COPY /root/conf/frpc.toml /etc/frp/ # buildkit
2025-12-07 19:27:52 UTC (buildkit.dockerfile.v0)COPY entrypoint.d /usr/local/bin/entrypoint.d # buildkit
2025-12-07 19:27:52 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh # buildkit
2025-12-07 19:27:52 UTC (buildkit.dockerfile.v0)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
2025-12-07 19:27:52 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2025-12-07 19:27:52 UTC
22.7 MB
0
DEBUGfalse
KEEPALIVE0
LANGC.UTF-8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGID0
PUID0
UMASK022
USERroot
WORKDIR/root
[#000] sha256:e6b06613ca2e7cdf3e8ebbe71ca45137242628a4a3a4bfcb7a9f76d0d5b0e653 - 15.31% (3.48 MB)
[#001] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#002] sha256:af289750a9be28f300e50d48a689161c6372f22c035f62324a26b6c5f48d0253 - 59.9% (13.6 MB)
[#003] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#004] sha256:4df1485070511cc803a602b9215ca2d4aab7d3799c5b050f732d85cca03ae0e2 - 0.0% (831 Bytes)
[#005] sha256:bd4d6ab6bc64e34f91dc39c625150f1667ed5e8d0bf1cdc683b0e206e54f5c9b - 0.0% (405 Bytes)
[#006] sha256:db2e47107c2428093746a3836f54977f604797046598216693785ef1600d1eb9 - 0.0% (826 Bytes)
[#007] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#009] sha256:5b82ee86c83b6f953cc683b1a499a8b324f2784bf706e1612e854a1cedb4ce15 - 24.78% (5.63 MB)
[#010] sha256:25fdad386875457f8cd261ba97f6f911b71131f09686d4fbc42d9e42e676a7e5 - 0.0% (247 Bytes)
[#011] sha256:8d6690cf293238c486ca58a91c0b2ea041c5d5bb6555232a10d2514f84bb2a37 - 0.0% (327 Bytes)
[#012] sha256:19f3a24740b576dbe187288e7ef9baef8cbf5e1fe1b1d10b93158fcc95323b08 - 0.0% (406 Bytes)
[#013] sha256:d5ac5865950658d87f6699395948cfbd28f88522e2b88b0dcbf646b28a94a3b1 - 0.0% (320 Bytes)
ADD alpine-minirootfs-3.22.2-s390x.tar.gz / # buildkit
2025-10-08 11:04:56 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh"]
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)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.22.2 org.opencontainers.image.url=https://github.com/snowdreamtech/alpine
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)USER root
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)WORKDIR /root
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)ARG KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)ENV KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-11-21 02:40:25 UTC (buildkit.dockerfile.v0)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 doas sudo busybox-suid musl-locales musl-locales-lang tzdata openssl wget curl git libcap su-exec ca-certificates && update-ca-certificates # buildkit
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)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
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)COPY entrypoint.d /usr/local/bin/entrypoint.d # buildkit
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh # buildkit
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)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
2025-11-21 08:47:43 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)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.65.0 org.opencontainers.image.url=https://github.com/snowdreamtech/frp
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)USER root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)WORKDIR /root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)ARG KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)ENV KEEPALIVE=0 CAP_NET_BIND_SERVICE=0 LANG=C.UTF-8 UMASK=022 DEBUG=false PGID=0 PUID=0 USER=root WORKDIR=/root
2025-12-07 19:25:18 UTC (buildkit.dockerfile.v0)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
2025-12-07 19:27:51 UTC (buildkit.dockerfile.v0)COPY /root/bin/frpc /usr/bin/ # buildkit
2025-12-07 19:27:51 UTC (buildkit.dockerfile.v0)COPY /root/conf/frpc.toml /etc/frp/ # buildkit
2025-12-07 19:27:51 UTC (buildkit.dockerfile.v0)COPY entrypoint.d /usr/local/bin/entrypoint.d # buildkit
2025-12-07 19:27:51 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh # buildkit
2025-12-07 19:27:52 UTC (buildkit.dockerfile.v0)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
2025-12-07 19:27:52 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
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.