rsyslog/Dockerfile
dvirlabs 2c27e6ade7
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
add Dockerfile and gitops status script
2026-06-09 16:46:33 +03:00

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