reshape/Dockerfile
2024-01-21 23:59:34 +01:00

9 lines
242 B
Docker

FROM rust:1.70.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"]