prima_bridge 0.26.0

A library to implement the bridge pattern
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM rust:1.89

WORKDIR /code

COPY entrypoint /code/entrypoint

RUN groupadd -g 1000 app && \
    useradd -g 1000 -u 1000 --system --create-home app && \
    chown -R app:app /code && \
    cargo install cargo-make && \
    rustup component add clippy rustfmt

USER app

ENTRYPOINT ["./entrypoint"]