File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 7676 steps :
7777 - uses : actions/checkout@v3
7878 - run : git submodule update --init --recursive --force
79+
80+ # In this step, this action saves a list of existing images,
81+ # the cache is created without them in the post run.
82+ # It also restores the cache if it exists.
83+ -
uses :
satackey/[email protected] 84+ continue-on-error : false
85+
7986 - run : docker build .
Original file line number Diff line number Diff line change @@ -4,6 +4,13 @@ FROM docker.io/library/golang:1.18-alpine3.15 AS builder
44RUN apk --no-cache add make gcc g++ linux-headers git bash ca-certificates libgcc libstdc++
55
66WORKDIR /app
7+
8+ # Get dependencies - will also be cached if we won't change go.mod/go.sum
9+ COPY go.mod .
10+ COPY go.sum .
11+ RUN go mod download
12+
13+
714ADD . .
815
916RUN make erigon rpcdaemon integration sentry txpool downloader hack observer db-tools
You can’t perform that action at this time.
0 commit comments