radicle-feed 0.5.3

A feed service for Radicle
Documentation
1
2
3
4
5
6
7
8
9
FROM rust:latest

WORKDIR /app

RUN apt-get update -qq && \
    rm -rf /var/lib/apt/lists/* && \
    cargo install radicle-feed

ENTRYPOINT ["radicle-feed"]