mirror of
https://github.com/neondatabase/neon.git
synced 2026-05-19 14:10:37 +00:00
7 lines
104 B
Docker
7 lines
104 B
Docker
FROM rust:1.70
|
|
WORKDIR /source
|
|
|
|
COPY . .
|
|
RUN cargo build
|
|
CMD ["/source/target/debug/rust-neon-example"]
|