udpt/Dockerfile

8 lines
163 B
Docker
Raw Normal View History

2018-10-22 22:44:49 +01:00
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"]