now pip can break system packages in the static analysis container
ci/woodpecker/push/static-analysis Pipeline failed Details
ci/woodpecker/push/vm-builder Pipeline was successful Details
ci/woodpecker/push/builder Pipeline was successful Details

main
Johannes Bülow 2023-09-19 15:02:34 +02:00
parent 1a0e5d1d2f
commit 5fd25f0609
Signed by untrusted user who does not match committer: jmb
GPG Key ID: B56971CF7B8F83A6
4 changed files with 4 additions and 4 deletions

View File

@ -10,7 +10,7 @@ when:
branch: main branch: main
steps: steps:
publish-builder: build-container:
image: woodpeckerci/plugin-docker-buildx image: woodpeckerci/plugin-docker-buildx
settings: settings:
dockerfile: builder/Dockerfile dockerfile: builder/Dockerfile

View File

@ -10,7 +10,7 @@ when:
branch: main branch: main
steps: steps:
publish-builder: build-container:
image: woodpeckerci/plugin-docker-buildx image: woodpeckerci/plugin-docker-buildx
settings: settings:
dockerfile: staticanalysis/Dockerfile dockerfile: staticanalysis/Dockerfile

View File

@ -10,7 +10,7 @@ when:
branch: main branch: main
steps: steps:
publish-vm-builder: build-container:
image: woodpeckerci/plugin-docker-buildx image: woodpeckerci/plugin-docker-buildx
settings: settings:
dockerfile: builder/Dockerfile dockerfile: builder/Dockerfile

View File

@ -20,7 +20,7 @@ RUN wget https://github.com/horsicq/DIE-engine/releases/download/3.08/die_3.08_D
&& apt-get install --no-install-recommends -y ./die.deb && apt-get install --no-install-recommends -y ./die.deb
## PiP stuff ## PiP stuff
#RUN pip3 install stringsifter pyelftools dotnetfile peframe-ds flare-floss oletools #RUN pip3 install stringsifter pyelftools dotnetfile peframe-ds flare-floss oletools
RUN pipx install stringsifter pyelftools dotnetfile flare-floss oletools RUN pip3 install --break-system-packages stringsifter pyelftools dotnetfile flare-floss oletools
## Manalyze ## Manalyze
RUN apt-get install -y libboost-regex-dev libboost-program-options-dev libboost-system-dev libboost-filesystem-dev libssl-dev build-essential cmake git python3-dev \ RUN apt-get install -y libboost-regex-dev libboost-program-options-dev libboost-system-dev libboost-filesystem-dev libssl-dev build-essential cmake git python3-dev \
&& git clone https://github.com/JusticeRage/Manalyze.git && cd Manalyze \ && git clone https://github.com/JusticeRage/Manalyze.git && cd Manalyze \