From 0fc99aa172cf31dbf139aadc41fbf8f561a5d98e Mon Sep 17 00:00:00 2001 From: rustmailer Date: Sat, 24 Jan 2026 20:20:18 +0800 Subject: [PATCH] chore: docker: bundle bichonctl and bichon-admin into Docker image #136 --- docker/Dockerfile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 45a1954..e0782f3 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -14,8 +14,16 @@ WORKDIR /opt/bichon # Copy compiled binary (ensure it's statically linked or compatible with bullseye) COPY ${TARGETARCH}/bichon /opt/bichon/bichon COPY ${TARGETARCH}/LICENSE /opt/bichon/ -# Set proper permissions + + +# cli tools +COPY ${TARGETARCH}/bichonctl /usr/local/bin/bichonctl +COPY ${TARGETARCH}/bichon-admin /usr/local/bin/bichon-admin + +# Set permissions RUN chmod +x /opt/bichon/bichon +RUN chmod +x /usr/local/bin/bichonctl +RUN chmod +x /usr/local/bin/bichon-admin # Copy and setup entrypoint script for PUID/PGID support COPY entrypoint.sh /usr/local/bin/entrypoint.sh