mirror of
https://github.com/mentos1386/dotfiles.git
synced 2025-01-31 08:45:46 +00:00
fix(packages): add libc-dev to rust, add libressl-dev to starship
This commit is contained in:
parent
85f2651224
commit
ded6930dc6
2 changed files with 6 additions and 1 deletions
|
@ -5,7 +5,8 @@ LABEL org.opencontainers.image.source https://github.com/mentos1386/workspace
|
||||||
|
|
||||||
RUN apk add --no-cache \
|
RUN apk add --no-cache \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
gcc
|
gcc \
|
||||||
|
libc-dev
|
||||||
|
|
||||||
ARG VERSION=1.48.0
|
ARG VERSION=1.48.0
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,10 @@ FROM ${REPOSITORY}/rust:1.48.0 as build
|
||||||
|
|
||||||
WORKDIR /usr/src/starship
|
WORKDIR /usr/src/starship
|
||||||
|
|
||||||
|
RUN apk --no-cache add \
|
||||||
|
git \
|
||||||
|
libressl-dev
|
||||||
|
|
||||||
ARG VERSION=0.47.0
|
ARG VERSION=0.47.0
|
||||||
|
|
||||||
RUN git clone https://github.com/starship/starship.git \
|
RUN git clone https://github.com/starship/starship.git \
|
||||||
|
|
Loading…
Reference in a new issue