Skip to content

Commit

Permalink
Update ENTRYPOINT instruction in Dockerfile (#21)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
SmetDenis committed Mar 13, 2024
1 parent 3774ba0 commit ad046c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Expand Up @@ -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"]

0 comments on commit ad046c0

Please sign in to comment.