Block a user
rustdesk-api (latest)
Published 2026-06-27 13:01:19 +02:00 by thomas
Installation
docker pull git.hackner.dev/thomas/rustdesk-api:latestsha256:1147365739a54df9c18ba95d2f2a1fc2c86002e386f96e11e2ca2adc0ef77104
Images
| Digest | OS / Arch | Size |
|---|---|---|
| 9886081fb0 | linux/amd64 | 30 MiB |
Image Layers ( linux/amd64)
| ADD alpine-minirootfs-3.24.1-x86_64.tar.gz / # buildkit |
| CMD ["/bin/sh"] |
| WORKDIR /app |
| ARG COUNTRY |
| RUN |1 COUNTRY= /bin/sh -c if [ "$COUNTRY" = "CN" ] ; then echo "It is in China, updating the repositories"; sed -i 's#https\?://dl-cdn.alpinelinux.org/alpine#https://mirrors.tuna.tsinghua.edu.cn/alpine#g' /etc/apk/repositories; fi && apk update && apk add --no-cache tzdata file # buildkit |
| COPY /app/release /app/ # buildkit |
| COPY /app/conf /app/conf/ # buildkit |
| COPY /app/resources /app/resources/ # buildkit |
| COPY /app/docs /app/docs/ # buildkit |
| COPY /frontend/dist/ /app/resources/admin/ # buildkit |
| RUN |1 COUNTRY= /bin/sh -c file /app/apimain && mkdir -p /app/data && mkdir -p /app/runtime # buildkit |
| VOLUME [/app/data] |
| EXPOSE [21114/tcp] |
| CMD ["./apimain"] |