From ef91b8e9afaf71b150fef193407a918589d92580 Mon Sep 17 00:00:00 2001 From: sstent Date: Sun, 8 Feb 2026 13:57:43 -0800 Subject: [PATCH] feat(config): Update Dockerfile to use simplified LiteFS ENTRYPOINT --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 579277f..88e2da4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,5 +20,7 @@ RUN chmod +x /usr/local/bin/register.sh /usr/local/bin/entrypoint.sh COPY litefs.yml /etc/litefs.yml # LiteFS becomes the supervisor. -# It will mount the FUSE fs and then execute our entrypoint script. -ENTRYPOINT ["litefs", "mount", "--", "/usr/local/bin/entrypoint.sh"] \ No newline at end of file + +# It will mount the FUSE fs and then execute the command defined in litefs.yml's exec section. + +ENTRYPOINT ["litefs", "mount"]