diff --git a/Dockerfile b/Dockerfile index bc18090..f3758a3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,6 +39,10 @@ RUN wget -O go.tar.gz $GO_URL && \ tar -C /usr/local -xzf go.tar.gz && \ rm go.tar.gz +# Download and install oha +RUN wget -qO /usr/local/bin/oha https://github.com/hatoo/oha/releases/latest/download/oha-linux-${TARGETARCH} && \ + chmod +x /usr/local/bin/oha + # Set Go path ENV PATH="/usr/local/go/bin:${PATH}" diff --git a/README.md b/README.md index b0ea5e6..880bf93 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,7 @@ The Docker image includes the following tools: - `postgresql-client` - **Go** (installed minimally) - `nginx` +- `oha` ## Getting Started