Skip to content

Instantly share code, notes, and snippets.

View abdulsaheel's full-sized avatar
🎯
Focusing

Mohammad Abdul Sahil || Python Programmer abdulsaheel

🎯
Focusing
View GitHub Profile
@abdulsaheel
abdulsaheel / Dockerfile
Created October 21, 2024 05:17
Docker Buildx getting while compiling rust package for arm arch in amd64 host
# Build stage
FROM rust:1.81 as builder
WORKDIR /app
ENV CARGO_NET_GIT_FETCH_WITH_CLI=true
ENV RUSTFLAGS="-C opt-level=0 -C target-feature=+lse -C target-cpu=native"
COPY . .