mirror of
https://git.unlock-music.dev/um/um-react-wry.git
synced 2025-05-23 16:27:42 +08:00
11 lines
182 B
Docker
11 lines
182 B
Docker
FROM rust
|
|
|
|
ENV CARGO_HOME=/h
|
|
WORKDIR /c
|
|
|
|
COPY src /c/src/
|
|
COPY build.rs Cargo.toml Cargo.lock /c/
|
|
RUN cargo build --bin builder --release
|
|
|
|
CMD gzip < target/release/builder | base64
|