From 5d9ff490f2ca73bef33b3fe2e5dbbefbe807358a Mon Sep 17 00:00:00 2001 From: j3ssie Date: Tue, 21 Jul 2026 23:30:09 +0700 Subject: [PATCH] chore: update Docker tooling and sponsor links --- README.md | 4 ++-- build/docker/Dockerfile | 1 + build/docker/Dockerfile.base.nix-test | 1 + build/docker/Dockerfile.dev | 1 + build/docker/Dockerfile.nix-test | 4 ++-- build/docker/ssh-test/Dockerfile | 1 + 6 files changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8eff224..4e5265e 100644 --- a/README.md +++ b/README.md @@ -35,9 +35,9 @@ See [Documentation Page](https://docs.osmedeus.org/) for more details. ## ☁️ Sponsor — Bloome -[![Bloome — humans and AI agents, working as one team](assets/bloome-home.png)](https://bloome.im/login?ref=j3ssie) +[![Bloome — humans and AI agents, working as one team](assets/bloome-home.png)](https://bloome.im/app?ref=j3ssie&utm_medium=github&utm_source=j3ssie-osmedeus-ivor-202607) -Automating recon with Osmedeus? [Bloome](https://bloome.im/login?ref=j3ssie) brings that same team-of-agents mindset to the rest of your workflow: multiple AI agents (Claude, ChatGPT, DeepSeek and more) in one shared chat that split the work, hand off tasks, cross-check each other, and refine the output until it's right — triage findings, draft reports, and run scheduled checks together. Zero setup, in the cloud, on web and mobile, and shareable with your team. 👉 [Try Bloome](https://bloome.im/login?ref=j3ssie) +Automating recon with Osmedeus? [Bloome](https://bloome.im/app?ref=j3ssie&utm_medium=github&utm_source=j3ssie-osmedeus-ivor-202607) brings that same team-of-agents mindset to the rest of your workflow: multiple AI agents (Claude, ChatGPT, DeepSeek and more) in one shared chat that split the work, hand off tasks, cross-check each other, and refine the output until it's right — triage findings, draft reports, and run scheduled checks together. Zero setup, in the cloud, on web and mobile, and shareable with your team. 👉 [Try Bloome](https://bloome.im/app?ref=j3ssie&utm_medium=github&utm_source=j3ssie-osmedeus-ivor-202607) ## Installation diff --git a/build/docker/Dockerfile b/build/docker/Dockerfile index 781a8ab..252a912 100644 --- a/build/docker/Dockerfile +++ b/build/docker/Dockerfile @@ -32,6 +32,7 @@ RUN apt-get update && \ git \ curl \ wget \ + jq \ ca-certificates \ python3 \ python3-pip \ diff --git a/build/docker/Dockerfile.base.nix-test b/build/docker/Dockerfile.base.nix-test index a48abd0..13d9e10 100644 --- a/build/docker/Dockerfile.base.nix-test +++ b/build/docker/Dockerfile.base.nix-test @@ -10,6 +10,7 @@ ENV DEBIAN_FRONTEND=noninteractive # Install dependencies RUN apt-get update && apt-get install -y \ curl \ + jq \ xz-utils \ ca-certificates \ sudo \ diff --git a/build/docker/Dockerfile.dev b/build/docker/Dockerfile.dev index c072c36..b93325c 100644 --- a/build/docker/Dockerfile.dev +++ b/build/docker/Dockerfile.dev @@ -13,6 +13,7 @@ RUN apt-get update && \ git \ curl \ wget \ + jq \ ca-certificates \ python3 \ python3-pip \ diff --git a/build/docker/Dockerfile.nix-test b/build/docker/Dockerfile.nix-test index acbc4ef..7a9712a 100644 --- a/build/docker/Dockerfile.nix-test +++ b/build/docker/Dockerfile.nix-test @@ -8,8 +8,8 @@ FROM nixos/nix:latest RUN mkdir -p /root/.config/nix && \ echo "experimental-features = nix-command flakes" > /root/.config/nix/nix.conf -# Install Go using Nix (for building the binary) -RUN nix profile add nixpkgs#go +# Install Go and jq using Nix (Go for building the binary) +RUN nix profile add nixpkgs#go nixpkgs#jq # Create app directory WORKDIR /app diff --git a/build/docker/ssh-test/Dockerfile b/build/docker/ssh-test/Dockerfile index 95ddd50..9eef6cb 100644 --- a/build/docker/ssh-test/Dockerfile +++ b/build/docker/ssh-test/Dockerfile @@ -7,6 +7,7 @@ RUN apt-get update && apt-get install -y \ sudo \ curl \ wget \ + jq \ vim \ && rm -rf /var/lib/apt/lists/* \ && mkdir /var/run/sshd