We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ae7821 commit 621211aCopy full SHA for 621211a
Containerfile
@@ -23,19 +23,6 @@ COPY src ./src
23
24
RUN python -m pip install model_signing
25
26
-RUN echo '#!/bin/bash\n\
27
-cd "/src" && python sign.py "$@"' > /usr/local/bin/sign
28
-
29
30
-cd "/src" && python verify.py "$@"' > /usr/local/bin/verify
31
32
33
-echo "Usage:"\n\
34
-echo " verify - Runs the verify.py Python script"\n\
35
-echo " sign - Runs the sign.py Python script"\n\
36
-echo " help - Displays this help message"' > /usr/local/bin/help
37
38
-RUN chmod +x /usr/local/bin/sign /usr/local/bin/verify /usr/local/bin/help
39
40
-CMD ["help"]
+ENTRYPOINT ["/usr/local/bin/model_signing"]
41
+CMD ["--help"]
0 commit comments