prima_bridge 0.4.1

A library to implement the bridge pattern
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
FROM 595659439703.dkr.ecr.eu-west-1.amazonaws.com/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"]