Skip to content

Commit

Permalink
Update ENTRYPOINT instruction in Dockerfile
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
Denis Smet committed Mar 13, 2024
1 parent 3774ba0 commit ece410f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
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 ece410f

Please sign in to comment.