Skip to content
This repository has been archived by the owner on Oct 20, 2023. It is now read-only.

Commit

Permalink
Fix dockerfile release for cobalt-strike and brute-ratel (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
GoldingAustin authored Aug 1, 2023
1 parent 6fca4d0 commit df5e712
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,12 @@ RUN moon run server:build client:build cobalt-strike-parser:build
RUN pkg applications/server/package.json -t node16-mac-x64 -o release/mac/RedEye
RUN pkg applications/server/package.json -t node16-linux-x64 -o release/linux/RedEye
RUN pkg applications/server/package.json -t node16-windows-x64 -o release/windows/RedEye
RUN pkg packages/cobalt-strike-parser/package.json -t node16-mac-x64 -o release/mac/parsers/cobalt-strike-parser
RUN pkg packages/cobalt-strike-parser/package.json -t node16-linux-x64 -o release/linux/parsers/cobalt-strike-parser
RUN pkg packages/cobalt-strike-parser/package.json -t node16-windows-x64 -o release/windows/parsers/cobalt-strike-parser
RUN pkg parsers/cobalt-strike-parser/package.json -t node16-mac-x64 -o release/mac/parsers/cobalt-strike-parser
RUN pkg parsers/cobalt-strike-parser/package.json -t node16-linux-x64 -o release/linux/parsers/cobalt-strike-parser
RUN pkg parsers/cobalt-strike-parser/package.json -t node16-windows-x64 -o release/windows/parsers/cobalt-strike-parser
RUN pkg parsers/brute-ratel-parser/package.json -t node16-mac-x64 -o release/mac/parsers/brute-ratel-parser
RUN pkg parsers/brute-ratel-parser/package.json -t node16-linux-x64 -o release/linux/parsers/brute-ratel-parser
RUN pkg parsers/brute-ratel-parser/package.json -t node16-windows-x64 -o release/windows/parsers/brute-ratel-parser
RUN tar -zcvf release.tar.gz ./release/
RUN mkdir outputs
RUN cp release.tar.gz outputs/release.tar.gz
Expand Down

0 comments on commit df5e712

Please sign in to comment.