reshape/Dockerfile
2021-12-28 16:44:52 +01:00

9 lines
242 B
Docker

FROM rust:1.57.0 AS builder
WORKDIR /usr/src/reshape
COPY . .
RUN cargo build --release
FROM debian:bullseye AS runtime
WORKDIR /usr/share/app
COPY --from=builder /usr/src/reshape/target/release/reshape /usr/local/bin/reshape
CMD ["reshape"]