mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-15 09:22:55 +00:00
It is fully supported. To enable TLS, though, it requires some extra glue code, and a dependency to a TLS library.
7 lines
104 B
Docker
7 lines
104 B
Docker
FROM rust:1.67
|
|
WORKDIR /source
|
|
|
|
COPY . .
|
|
RUN cargo build
|
|
CMD ["/source/target/debug/rust-neon-example"]
|