diff --git a/staticanalysis/Dockerfile b/staticanalysis/Dockerfile index c495ac8..82655ca 100644 --- a/staticanalysis/Dockerfile +++ b/staticanalysis/Dockerfile @@ -36,6 +36,10 @@ RUN git clone https://github.com/MITRECND/malchive.git && cd malchive && pip ins ## CAPA RUN wget https://github.com/mandiant/capa/releases/download/v6.1.0/capa-v6.1.0-linux.zip -O capa.zip \ && unzip capa.zip && chmod +x capa && mv capa /usr/local/bin/ +## Box-JS +RUN curl -fsSL https://deb.nodesource.com/setup_21.x | bash - \ + && apt-get install -y nodejs \ + && npm install --global box-js ## CLEANUP RUN apt-get -y autoremove \ && apt-get clean -y \