mirror of
https://github.com/mentos1386/dotfiles.git
synced 2024-11-27 01:23:35 +00:00
19 lines
461 B
Text
19 lines
461 B
Text
FROM rust:1 as build
|
|
|
|
LABEL maintainer="Tine <mentos1386> Jozelj <tine@tjo.space>"
|
|
LABEL org.opencontainers.image.source https://github.com/mentos1386/env
|
|
|
|
WORKDIR /usr/src/starship
|
|
|
|
ARG VERSION=0.47.0
|
|
|
|
RUN git clone https://github.com/starship/starship.git . \
|
|
&& git checkout tags/v$VERSION
|
|
|
|
RUN cargo build --release
|
|
|
|
RUN strip target/release/starship
|
|
|
|
FROM scratch AS binaries
|
|
COPY --from=build /usr/src/starship/target/$TARGETPLATFORM/release/starship /
|
|
|