From ad046c0cf431032b55f26d715d6ac4c06abdcc21 Mon Sep 17 00:00:00 2001 From: Denis Smetannikov Date: Wed, 13 Mar 2024 23:29:10 +0400 Subject: [PATCH] Update ENTRYPOINT instruction in Dockerfile (#21) In the Dockerfile, the ENTRYPOINT instruction has been updated to simplify the command's syntax. The change results in more direct execution without the need for "sh" and "-c". The modification now uses "/app/csv-blueprint" directly, resulting in improved containerization and execution efficiency. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 120ee0a9..078b0ff8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,4 +28,4 @@ RUN chmod +x /app/csv-blueprint # Color output by default ENV TERM_PROGRAM=Hyper -ENTRYPOINT ["sh", "-c", "/app/csv-blueprint"] +ENTRYPOINT ["/app/csv-blueprint"]