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 7560612 commit 4c0e2b0Copy full SHA for 4c0e2b0
tools/devctr/Dockerfile
@@ -102,6 +102,12 @@ ENV PATH=$VENV/bin:$PATH
102
# apt-get installs it globally, to manually copy it into the venv
103
RUN cp /usr/lib/python3/dist-packages/seccomp.cpython-312-"$ARCH"-linux-gnu.so "$VENV"/lib/python3.12/site-packages/
104
105
+RUN git clone https://github.com/awslabs/git-secrets /tmp/git-secrets \
106
+ && cd /tmp/git-secrets \
107
+ && make install \
108
+ && cd - \
109
+ && rm -rf /tmp/git-secrets
110
+
111
# Running the three as a single dockerfile command to avoid inflation of the image:
112
# - Install the Rust toolchain.
113
# - Kani always installs _some_ nightly toolchain, we reuse it for the seccomp filter analysis test. Dynamically
0 commit comments