Skip to content

Commit

Permalink
chore: Correct command in dockerfile (#136)
Browse files Browse the repository at this point in the history
fix the command name in the docker file - entry point is wrong
  • Loading branch information
owenrumney authored Jan 29, 2025
1 parent 7c44845 commit f623a5f
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 @@ -7,7 +7,7 @@ USER nobody
COPY squealer /usr/bin/squealer

# set the default entrypoint -- when this container is run, use this command
ENTRYPOINT [ "sqealer" ]
ENTRYPOINT [ "squealer" ]

# as we specified an entrypoint, this is appended as an argument (i.e., `sqealer --help`)
CMD [ "--help" ]
Expand Down

0 comments on commit f623a5f

Please sign in to comment.