Compare commits

..

2 Commits

Author SHA1 Message Date
Aryma
5110b9e400 fix(ares): correct donut copy path in Dockerfile CMD
The copy command in the CMD directive was using a relative path that didn't match the actual container directory structure. This ensures the donut executable is copied to the correct absolute path before starting the agent.
2026-04-15 01:26:52 +07:00
Aryma
acb4291b69 Update Docker image to multiarch-fixed-v2 for AMD64 support 2026-04-15 01:25:57 +07:00
2 changed files with 2 additions and 2 deletions

View File

@@ -20,4 +20,4 @@ COPY [".", "."]
RUN cd ares/agent_code && dotnet restore --verbosity quiet && rm donut ; cp /donut donut RUN cd ares/agent_code && dotnet restore --verbosity quiet && rm donut ; cp /donut donut
RUN cd ares/agent_code && cp COFFLoader.dll /COFFLoader.dll RUN cd ares/agent_code && cp COFFLoader.dll /COFFLoader.dll
CMD ["bash", "-c", "cp /donut ares/agent_code/donut && /venv/bin/python main.py"] CMD ["bash", "-c", "cp /donut /Mythic/ares/agent_code/donut && /venv/bin/python main.py"]

View File

@@ -4,5 +4,5 @@
"exclude_documentation_payload": false, "exclude_documentation_payload": false,
"exclude_documentation_c2": false, "exclude_documentation_c2": false,
"exclude_agent_icons": false, "exclude_agent_icons": false,
"remote_images": {"ares" :"ghcr.io/aryma-f4/ares-mythic:v1.0-fixed"} "remote_images": {"ares" :"ghcr.io/aryma-f4/ares-mythic:multiarch-fixed-v2"}
} }