Block a user
meredith/voice-bot (b0870f7)
Published 2026-03-27 21:54:03 +00:00 by dfunnell
Installation
docker pull gitea.codewarp.org/tron/meredith/voice-bot:b0870f7sha256:00a913d407f54efc8382428cdc506ef4ec9ec52f9097e0baab4e4d198316061f
Image Layers
| # debian.sh --arch 'amd64' out/ 'bookworm' '@1773619200' |
| RUN /bin/sh -c apt-get update && apt-get install -y ca-certificates libssl3 curl && rm -rf /var/lib/apt/lists/* # buildkit |
| RUN /bin/sh -c useradd -r -s /bin/false meredith # buildkit |
| RUN /bin/sh -c mkdir -p /etc/meredith /var/log/meredith && chown -R meredith:meredith /var/log/meredith # buildkit |
| COPY /build/target/release/voice-bot /usr/local/bin/ # buildkit |
| COPY voice-bot/config.toml.example /etc/meredith/voice-bot.toml # buildkit |
| ENV MEREDITH_CONFIG=/etc/meredith/voice-bot.toml |
| ENV RUST_LOG=info |
| USER meredith |
| EXPOSE [8112/tcp] |
| HEALTHCHECK &{["CMD-SHELL" "curl -f http://localhost:8112/health || exit 1"] "30s" "5s" "15s" "0s" '\x03'} |
| ENTRYPOINT ["/usr/local/bin/voice-bot"] |