reshape 0.7.0

An easy-to-use, zero-downtime schema migration tool for Postgres
Documentation
1
2
3
4
5
6
7
8
9
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"]