From e4e9c85c29641f5f1df7d5d6f7aac1755f58e41b Mon Sep 17 00:00:00 2001 From: Alex Matsuev Date: Sat, 22 Nov 2025 13:11:13 +0300 Subject: [PATCH] Update actions --- Dockerfile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7f2af9d..3f355ab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,7 @@ FROM alpine:3.22 -WORKDIR /app +COPY ./bin/metrics /bin -COPY ./bin/metrics . +RUN chmod +x /bin/metrics -RUN chmod +x /app/metrics - -CMD ["/app/metrics"] \ No newline at end of file +CMD ["/bin/metrics"] \ No newline at end of file