prew 0.3.0

Reverse rewrite proxy for PostgreSQL
Documentation
1
2
3
4
5
6
7
8
9
10
FROM rust:1.65

RUN apt-get update
RUN apt-get install -y cmake libclang-dev
RUN cargo install --path .

WORKDIR /usr/src/prew
COPY . .

CMD ["prew"]