pub 0.3.4

publish anything to the open web
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM btwiuse/arch:rustup as builder

WORKDIR /app

ADD . /app/

RUN cargo build --release

RUN cp ./target/release/pub /usr/local/bin/

FROM btwiuse/arch

COPY --from=builder /usr/local/bin/pub /usr/bin/pub

ENTRYPOINT ["/usr/bin/pub"]