WIP: stagex-build #33

Closed
lrvick wants to merge 12 commits from stagex-build into main
1 changed files with 10 additions and 6 deletions
Showing only changes of commit 30a1b46668 - Show all commits

View File

@ -17,17 +17,21 @@ COPY --from=stagex/pkgconf . /
COPY --from=stagex/binutils . /
ADD . /src
WORKDIR /src
ADD <<-EOF /.cargo/config.toml
[registries.distrust]
index = "https://git.distrust.co/public/_cargo-index.git"
EOF
RUN cargo fetch
ENV NETTLE_STATIC=yes
ENV PCSC_LIB_NAME=static=pcsclite
ENV RUSTFLAGS='-C codegen-units=1'
RUN --network=none \
cargo build \
--frozen \
--release \
--features static \
--target x86_64-unknown-linux-musl \
--bin keyfork
cargo build \
--frozen \
--release \
--features static \
--target x86_64-unknown-linux-musl \
--bin keyfork
FROM scratch AS package
COPY --from=build keyfork/target/release/keyfork /keyfork