Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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}"

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ The Docker image includes the following tools:
- `postgresql-client`
- **Go** (installed minimally)
- `nginx`
- `oha`

## Getting Started

Expand Down