From 2cc6b6bdbbd7e60bcc38f2835517a279ef6bfb63 Mon Sep 17 00:00:00 2001 From: Stavros Date: Tue, 7 Oct 2025 15:25:17 +0300 Subject: [PATCH] fix: tinyauth path in dockerfiles --- Dockerfile | 2 +- Dockerfile.distroless | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3005617..f97af4e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -53,4 +53,4 @@ VOLUME ["/data"] HEALTHCHECK --interval=30s --timeout=5s --start-period=5s --retries=3 CMD ["/tinyauth/tinyauth", "healthcheck"] -ENTRYPOINT ["tinyauth"] \ No newline at end of file +ENTRYPOINT ["/tinyauth/tinyauth"] \ No newline at end of file diff --git a/Dockerfile.distroless b/Dockerfile.distroless index 37723c6..be00998 100644 --- a/Dockerfile.distroless +++ b/Dockerfile.distroless @@ -53,4 +53,4 @@ VOLUME ["/data"] HEALTHCHECK --interval=30s --timeout=5s --start-period=5s --retries=3 CMD ["/tinyauth/tinyauth", "healthcheck"] -ENTRYPOINT ["tinyauth"] \ No newline at end of file +ENTRYPOINT ["/tinyauth/tinyauth"] \ No newline at end of file