2024-12-22 01:09:44 -05:00
|
|
|
FROM debian:10-slim
|
|
|
|
|
|
|
|
|
|
# Install Rust building environment
|
|
|
|
|
RUN apt update && apt install -y curl build-essential gcc libssl-dev bash musl-tools mingw-w64
|
|
|
|
|
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
|
|
|
|
|
|
|
|
|
# Add toolchains for building for gnu[x86_64, aarch64, armv7l], musl[x86_64], and windows[x86_64, aarch64]
|
2024-12-22 01:39:13 -05:00
|
|
|
RUN /root/.cargo/bin/rustup target add \
|
2024-12-22 01:09:44 -05:00
|
|
|
x86_64-unknown-linux-gnu \
|
|
|
|
|
aarch64-unknown-linux-gnu \
|
|
|
|
|
armv7-unknown-linux-gnueabihf \
|
|
|
|
|
x86_64-unknown-linux-musl \
|
2024-12-22 01:39:13 -05:00
|
|
|
x86_64-pc-windows-gnu
|
|
|
|
|
|
|
|
|
|
# Install armv7l & aarch64 toolchains
|
|
|
|
|
RUN apt install -y gcc-arm-linux-gnueabihf gcc-aarch64-linux-gnu
|
|
|
|
|
|
|
|
|
|
# Add cargo to path
|
|
|
|
|
ENV PATH="/root/.cargo/bin:${PATH}"
|
2024-12-22 01:09:44 -05:00
|
|
|
|
|
|
|
|
WORKDIR /app
|