diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c77fcfe --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM rust:latest +COPY . /usr/src/udpt +WORKDIR /usr/src/udpt + +RUN cargo build --release -j4 + +CMD ["target/release/udpt-rs", "-c", "/usr/src/udpt/udpt.toml"]