diff --git a/packages/Dockerfile.rust b/packages/Dockerfile.rust index 2b5bcb4..67b5c55 100644 --- a/packages/Dockerfile.rust +++ b/packages/Dockerfile.rust @@ -5,7 +5,8 @@ LABEL org.opencontainers.image.source https://github.com/mentos1386/workspace RUN apk add --no-cache \ ca-certificates \ - gcc + gcc \ + libc-dev ARG VERSION=1.48.0 diff --git a/packages/Dockerfile.starship b/packages/Dockerfile.starship index eccb3d1..337cc27 100644 --- a/packages/Dockerfile.starship +++ b/packages/Dockerfile.starship @@ -3,6 +3,10 @@ FROM ${REPOSITORY}/rust:1.48.0 as build WORKDIR /usr/src/starship +RUN apk --no-cache add \ + git \ + libressl-dev + ARG VERSION=0.47.0 RUN git clone https://github.com/starship/starship.git \