Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Tanq16 authored Dec 25, 2023
1 parent 3dd981d commit 89870e4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions security_docker_main/builder.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@ RUN mkdir /testingground && cd /testingground && \
mv ffuf /executables && cd .. && rm -rf testingground
RUN mkdir /testingground && cd /testingground && \
a=$(curl -s https://api.github.com/repos/mikefarah/yq/releases/latest | grep -E "browser_download_url.*" | grep -i "linux" | grep -i "amd64" | grep -v "tar.gz" | cut -d '"' -f4) && \
wget "$a" && chmod +x && \
mv yq_linux_amd64 /executables/yq && cd .. && rm -rf testingground
wget "$a" && mv yq_linux_amd64 /executables/yq && cd .. && rm -rf testingground
RUN mkdir /testingground && cd /testingground && \
a=$(curl -s https://api.github.com/repos/fullstorydev/grpcurl/releases/latest | grep -E "browser_download_url.*" | grep -i "linux" | grep -i "x86_64" | cut -d '"' -f4) && \
wget "$a" -O test.tar.gz && tar -xzf test.tar.gz && \
Expand Down

0 comments on commit 89870e4

Please sign in to comment.