- Create docker/edge/Dockerfile with bash, jq, curl, git, docker-cli - Create docker/edge/dispatcher.sh as placeholder no-op loop - Update edge service to build from ./docker/edge instead of caddy:alpine image - Mount Docker socket into edge container for dispatcher access - Mount dispatcher.sh as read-only volume
3 lines
117 B
Docker
3 lines
117 B
Docker
FROM caddy:alpine
|
|
RUN apk add --no-cache bash jq curl git docker-cli
|
|
COPY dispatcher.sh /usr/local/bin/dispatcher.sh
|