mirror of
https://github.com/maplibre/martin.git
synced 2024-12-18 20:31:54 +03:00
13 lines
261 B
Docker
13 lines
261 B
Docker
FROM ekidd/rust-musl-builder:1.23.0 as builder
|
|
|
|
ADD . .
|
|
RUN sudo chmod -R 0777 *
|
|
RUN cargo build --release
|
|
|
|
FROM alpine:latest
|
|
|
|
COPY --from=builder \
|
|
/home/rust/src/target/x86_64-unknown-linux-musl/release/martin \
|
|
/usr/local/bin/
|
|
|
|
CMD /usr/local/bin/martin |