fix(package:starship): add labels and correct binary

This commit is contained in:
Tine Jozelj 2020-12-23 17:06:06 +01:00
parent 1c6e384941
commit 25a00906e3
No known key found for this signature in database
GPG key ID: 3818B74E3830D7CF

View file

@ -1,8 +1,5 @@
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
@ -10,11 +7,13 @@ ARG VERSION=0.47.0
RUN git clone https://github.com/starship/starship.git \
--branch v$VERSION \
--depth 1 .
RUN cargo build --release
RUN strip target/release/starship
FROM scratch AS binaries
COPY --from=build /usr/src/starship/target/$TARGETPLATFORM/release/starship /
LABEL maintainer="Tine <mentos1386> Jozelj <tine@tjo.space>"
LABEL org.opencontainers.image.source https://github.com/mentos1386/env
COPY --from=build /usr/src/starship/target/release/starship /