13 lines
328 B
Docker
13 lines
328 B
Docker
FROM alpine/ansible:latest
|
|
|
|
# Install required dependencies for GitOps status check
|
|
# - git: for detecting deployed files and git operations
|
|
# - curl: for HTTP requests to gitops-status-server
|
|
# - jq: for JSON formatting and parsing
|
|
# - bash: for script execution
|
|
RUN apk add --no-cache \
|
|
git \
|
|
curl \
|
|
jq \
|
|
bash
|