Dockerfile.arm: Add git to builder.

This commit is contained in:
Daniel Valentine 2022-11-22 15:42:10 -07:00
parent 5aee695bae
commit ab39b62533
1 changed files with 3 additions and 2 deletions

View File

@ -3,7 +3,7 @@
####################################################################################################
FROM rust:alpine AS builder
RUN apk add --no-cache g++
RUN apk add --no-cache g++ git
WORKDIR /usr/src/libreddit
@ -12,7 +12,8 @@ COPY . .
# net.git-fetch-with-cli is specified in order to prevent a potential OOM kill
# in low memory environments. See:
# https://users.rust-lang.org/t/cargo-uses-too-much-memory-being-run-in-qemu/76531
# This is tracked under issue #641.
# This is tracked under issue #641. This also requires us to install git in the
# builder.
RUN cargo install --config net.git-fetch-with-cli=true --path .
####################################################################################################