All checks were successful
ci/woodpecker/push/ci Pipeline was successful
Dockerfile: caddy:latest is Alpine, needs apk not apt-get. Add python3 which dispatcher.sh requires for JSON filtering since Apr 6. dispatcher.sh: BusyBox mktemp does not support suffixes after XXXXXX template. Remove .txt suffix. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
4 lines
192 B
Docker
4 lines
192 B
Docker
FROM caddy:latest
|
|
RUN apk add --no-cache bash jq curl git docker-cli python3
|
|
COPY entrypoint-edge.sh /usr/local/bin/entrypoint-edge.sh
|
|
ENTRYPOINT ["bash", "/usr/local/bin/entrypoint-edge.sh"]
|