From f93071da96240146c08a916105ea31779d0bbd57 Mon Sep 17 00:00:00 2001 From: CHAMI Rachid Date: Wed, 16 Nov 2022 17:31:09 +0100 Subject: [PATCH] fix: add git to Dockerfile build (#1017) ## Overview Fixes the following error: ``` ---> 0119ef2bed23 Step 5/12 : RUN make build ---> Running in 8f545cb05d38 make: git: No such file or directory make: git: No such file or directory --> Updating go.mod ``` <--- Please provide an explanation of the PR, including the apprioprate context, background, goal, and rationale. If there is an issue with this information, please provide a tl;dr and link the issue. --> ## Checklist - [ ] New and updated code has appropriate documentation - [ ] New and updated code has new and/or updated testing - [ ] Required CI checks are passing - [ ] Visual proof for any user facing features like CLI or documentation updates - [ ] Linked issues closed with keywords --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9eb1004026..8a98df856e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # stage 1 Generate celestia-appd Binary FROM golang:1.18-alpine as builder # hadolint ignore=DL3018 -RUN apk update && apk --no-cache add make gcc musl-dev +RUN apk update && apk --no-cache add make gcc musl-dev git COPY . /celestia-app WORKDIR /celestia-app RUN make build