Files
neon/test_runner/pg_clients/rust/tokio-postgres/Dockerfile
Heikki Linnakangas e0ee138a8b Add a test for tokio-postgres client to the driver test suite.
It is fully supported. To enable TLS, though, it requires some extra
glue code, and a dependency to a TLS library.
2023-03-13 12:14:37 +02:00

7 lines
104 B
Docker

FROM rust:1.67
WORKDIR /source
COPY . .
RUN cargo build
CMD ["/source/target/debug/rust-neon-example"]