prima_bridge 0.1.7

A library to implement the bridge pattern
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
FROM prima/rust:1.44.1-1

WORKDIR /code

COPY entrypoint /code/entrypoint

RUN chown -R app:app /code

# Serve per avere l'owner dei file scritti dal container uguale all'utente Linux sull'host
USER app

ENTRYPOINT ["./entrypoint"]