From 44f2c57819be8078f671a5cc53c0ae595f8c21d2 Mon Sep 17 00:00:00 2001 From: Dreaded_X Date: Wed, 22 Oct 2025 04:56:11 +0200 Subject: [PATCH] fix: Set entrypoint lua path correctly in Dockerfile --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 2af030b..ad16d72 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,5 +21,7 @@ RUN cargo auditable build --release FROM gcr.io/distroless/cc-debian12:nonroot AS runtime COPY --from=builder /app/target/release/automation /app/automation +ENV AUTOMATION__ENTRYPOINT=/app/config/config.lua +ENV LUA_PATH="/app/?.lua;;" COPY ./config /app/config CMD [ "/app/automation" ]