mirror of
https://github.com/Noratrieb/widetom.git
synced 2026-01-14 08:55:02 +01:00
30 lines
No EOL
620 B
Docker
30 lines
No EOL
620 B
Docker
FROM rust as build
|
|
|
|
RUN rustup toolchain install nightly
|
|
RUN rustup default nightly
|
|
RUN rustup target add x86_64-unknown-linux-musl
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install musl-tools -y
|
|
|
|
WORKDIR /app
|
|
COPY Cargo.toml Cargo.lock ./
|
|
RUN mkdir src
|
|
RUN echo "fn main() {}" > src/main.rs
|
|
|
|
RUN cargo build --release --target x86_64-unknown-linux-musl
|
|
|
|
COPY src ./src
|
|
|
|
# now rebuild with the proper main
|
|
RUN touch src/main.rs
|
|
RUN cargo build --release --target x86_64-unknown-linux-musl
|
|
|
|
### RUN
|
|
FROM scratch
|
|
|
|
WORKDIR /app
|
|
|
|
COPY --from=build /app/target/x86_64-unknown-linux-musl/release/widertom widertom
|
|
|
|
CMD ["/app/widertom"] |