From a32e279fe40bb40fd624d77bddff493e5219373a Mon Sep 17 00:00:00 2001 From: Nicolas Bock Date: Wed, 11 Sep 2024 08:02:03 -0600 Subject: [PATCH] Make sure binaries are executable Signed-off-by: Nicolas Bock --- cmd/monitor/Dockerfile | 1 + cmd/processor/Dockerfile | 1 + 2 files changed, 2 insertions(+) diff --git a/cmd/monitor/Dockerfile b/cmd/monitor/Dockerfile index 5718e92..0551aa7 100644 --- a/cmd/monitor/Dockerfile +++ b/cmd/monitor/Dockerfile @@ -19,3 +19,4 @@ RUN update-ca-certificates RUN mkdir /etc/athena/ COPY ./build/athena-monitor /athena-monitor +RUN chmod 755 /athena-monitor diff --git a/cmd/processor/Dockerfile b/cmd/processor/Dockerfile index 92e49ad..5633ecf 100644 --- a/cmd/processor/Dockerfile +++ b/cmd/processor/Dockerfile @@ -21,3 +21,4 @@ RUN update-ca-certificates RUN mkdir /etc/athena/ COPY ./build/athena-processor /athena-processor +RUN chmod 755 /athena-processor