Skip to content

Commit

Permalink
Git config
Browse files Browse the repository at this point in the history
  • Loading branch information
ericvolp12 committed Nov 13, 2024
1 parent 8833d87 commit 814e8e4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cmd/bigsky/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
FROM golang:1.23.3-alpine3.19 AS custom-go
RUN apk add --no-cache build-base make git

# Git config
RUN git config --global user.email "automated_action_runner@github"
RUN git config --global user.name "automated_action_runner"

# Clone go source
RUN git clone https://go.googlesource.com/go /gosource

Expand Down
4 changes: 4 additions & 0 deletions cmd/bigsky/custom_go.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
FROM golang:1.23.3-alpine3.19 AS custom-go
RUN apk add --no-cache build-base make git

# Git config
RUN git config --global user.email "automated_action_runner@github"
RUN git config --global user.name "automated_action_runner"

# Clone go source
RUN git clone https://go.googlesource.com/go /gosource

Expand Down

0 comments on commit 814e8e4

Please sign in to comment.