Files
neon/test_runner/pg_clients/rust/tokio-postgres/Dockerfile

7 lines
104 B
Docker

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