File tree 4 files changed +18
-18
lines changed
4 files changed +18
-18
lines changed Original file line number Diff line number Diff line change
1
+ .git
Original file line number Diff line number Diff line change @@ -32,22 +32,22 @@ jobs:
32
32
33
33
- name : Build and push
34
34
uses : docker/build-push-action@v3
35
- env :
36
- VERSION : ${{ steps.vars.outputs.tag }}
37
35
with :
38
36
context : .
39
37
push : true
38
+ build-args : |
39
+ VERSION=${{ steps.vars.outputs.tag }}
40
40
tags : flashbots/mev-boost:latest,flashbots/mev-boost:${{ steps.vars.outputs.tag }}
41
41
platforms : linux/amd64,linux/arm64
42
42
43
43
- name : Build and push portable
44
44
uses : docker/build-push-action@v3
45
- env :
46
- VERSION : ${{ steps.vars.outputs.tag }}
47
- CGO_CFLAGS : " O -D__BLST_PORTABLE__"
48
45
with :
49
46
context : .
50
47
push : true
48
+ build-args : |
49
+ VERSION=${{ steps.vars.outputs.tag }}
50
+ CGO_CFLAGS="-O -D__BLST_PORTABLE__"
51
51
tags : flashbots/mev-boost:latest-portable,flashbots/mev-boost:${{ steps.vars.outputs.tag }}-portable
52
52
platforms : linux/amd64,linux/arm64
53
53
Original file line number Diff line number Diff line change 1
1
# syntax=docker/dockerfile:1
2
2
FROM golang:1.18 as builder
3
+ ARG VERSION
4
+ ARG CGO_CFLAGS
3
5
WORKDIR /build
4
6
ADD . /build/
5
- RUN --mount=type=cache,target=/root/.cache/go-build make build-for-docker
7
+ RUN --mount=type=cache,target=/root/.cache/go-build CGO_CFLAGS= "$CGO_CFLAGS" GOOS=linux go build -ldflags "-X 'github.com/flashbots/mev-boost/config.Version=$VERSION'" -v -o mev-boost .
6
8
7
9
FROM alpine
8
-
9
- RUN apk add --no-cache libgcc libstdc++ libc6-compat
10
+ RUN apk add --no-cache libstdc++ libc6-compat
10
11
WORKDIR /app
11
12
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
12
13
COPY --from=builder /build/mev-boost /app/mev-boost
Original file line number Diff line number Diff line change 14
14
15
15
.PHONY : build-portable
16
16
build-portable :
17
- CGO_CFLAGS=- " O -D__BLST_PORTABLE__" go build -ldflags " -X 'github.com/flashbots/mev-boost/config.Version=${VERSION} ' -X 'github.com/flashbots/mev-boost/config.BuildTime=$( shell date) '" -v -o mev-boost .
17
+ CGO_CFLAGS=" - O -D__BLST_PORTABLE__" go build -ldflags " -X 'github.com/flashbots/mev-boost/config.Version=${VERSION} ' -X 'github.com/flashbots/mev-boost/config.BuildTime=$( shell date) '" -v -o mev-boost .
18
18
19
19
.PHONY : build-testcli
20
20
build-testcli :
@@ -55,17 +55,15 @@ cover-html:
55
55
run-mergemock-integration : build
56
56
./scripts/run_mergemock_integration.sh
57
57
58
- .PHONY : build-for-docker
59
- build-for-docker :
60
- GOOS=linux go build -ldflags " -X 'github.com/flashbots/mev-boost/config.Version=${VERSION} ' -X 'github.com/flashbots/mev-boost/config.BuildTime=$( shell date) '" -v -o mev-boost .
61
-
62
- .PHONY : build-for-docker-portable
63
- build-for-docker-portable :
64
- CGO_CFLAGS=-" O -D__BLST_PORTABLE__" GOOS=linux go build -ldflags " -X 'github.com/flashbots/mev-boost/config.Version=${VERSION} ' -X 'github.com/flashbots/mev-boost/config.BuildTime=$( shell date) '" -v -o mev-boost .
65
-
66
58
.PHONY : docker-image
67
59
docker-image :
68
- DOCKER_BUILDKIT=1 docker build . -t mev-boost
60
+ DOCKER_BUILDKIT=1 docker build --build-arg VERSION=${VERSION} . -t mev-boost
61
+ docker tag mev-boost:latest ${DOCKER_REPO} :${VERSION}
62
+ docker tag mev-boost:latest ${DOCKER_REPO} :latest
63
+
64
+ .PHONY : docker-image-portable
65
+ docker-image-portable :
66
+ DOCKER_BUILDKIT=1 docker build --build-arg CGO_CFLAGS=" -O -D__BLST_PORTABLE__" --build-arg VERSION=${VERSION} . -t mev-boost
69
67
docker tag mev-boost:latest ${DOCKER_REPO} :${VERSION}
70
68
docker tag mev-boost:latest ${DOCKER_REPO} :latest
71
69
You can’t perform that action at this time.
0 commit comments