transit_model 0.47.0

Transit data management
Documentation
1
2
3
4
5
6
7
8
9
FROM kisiodigital/rust-ci:latest-proj8.1.0 as builder
WORKDIR /usr/src/app
COPY . ./
RUN git describe --tags --always && git status
RUN cargo build --workspace --release
RUN mkdir /usr/src/bin && for file in ls ${CARGO_TARGET_DIR:-./target}/release/*; do if test -f $file -a -x $file; then cp $file /usr/src/bin; fi; done

FROM kisiodigital/proj-ci:8.1.0
COPY --from=builder /usr/src/bin/* /usr/local/bin/