Block a user
meredith/meredith-proxy (8ba20ca)
Published 2026-03-27 12:05:41 +00:00 by dfunnell
Installation
docker pull gitea.codewarp.org/tron/meredith/meredith-proxy:8ba20casha256:94a87aab457f64dc3b20d63c502ada070ef556d1ba3e53a1d34689ff07f82863
Image Layers
| # debian.sh --arch 'amd64' out/ 'bookworm' '@1773619200' |
| RUN /bin/sh -c apt-get update && apt-get install -y ca-certificates libssl3 curl nodejs npm && rm -rf /var/lib/apt/lists/* # buildkit |
| RUN /bin/sh -c npm install -g @anthropic-ai/claude-code # 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 /etc/meredith # buildkit |
| COPY /build/target/release/meredith-proxy /usr/local/bin/ # buildkit |
| ENV MEREDITH_CONFIG=/etc/meredith/config.toml |
| ENV RUST_LOG=info |
| USER meredith |
| EXPOSE [8107/tcp] |
| HEALTHCHECK &{["CMD-SHELL" "curl -f http://localhost:8107/health || exit 1"] "30s" "5s" "10s" "0s" '\x03'} |
| ENTRYPOINT ["/usr/local/bin/meredith-proxy"] |