Skip to content

Commit

Permalink
fix: forward args to containerized cli (#345)
Browse files Browse the repository at this point in the history
Signed-off-by: Janine Olear <[email protected]>
  • Loading branch information
miyunari authored Jan 20, 2025
1 parent f0a6e96 commit 603d717
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ COPY src ./src
RUN python -m pip install model_signing

RUN echo '#!/bin/bash\n\
cd "/src" && python sign.py' > /usr/local/bin/sign
cd "/src" && python sign.py "$@"' > /usr/local/bin/sign

RUN echo '#!/bin/bash\n\
cd "/src" && python verify.py' > /usr/local/bin/verify
cd "/src" && python verify.py "$@"' > /usr/local/bin/verify

RUN echo '#!/bin/bash\n\
echo "Usage:"\n\
Expand Down

0 comments on commit 603d717

Please sign in to comment.