Skip to content

Commit 0cf3987

Browse files
authored
fix docker portable build (#282)
1 parent 77c33ff commit 0cf3987

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

.dockerignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.git

.github/workflows/releaser.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -32,22 +32,22 @@ jobs:
3232

3333
- name: Build and push
3434
uses: docker/build-push-action@v3
35-
env:
36-
VERSION: ${{ steps.vars.outputs.tag }}
3735
with:
3836
context: .
3937
push: true
38+
build-args: |
39+
VERSION=${{ steps.vars.outputs.tag }}
4040
tags: flashbots/mev-boost:latest,flashbots/mev-boost:${{ steps.vars.outputs.tag }}
4141
platforms: linux/amd64,linux/arm64
4242

4343
- name: Build and push portable
4444
uses: docker/build-push-action@v3
45-
env:
46-
VERSION: ${{ steps.vars.outputs.tag }}
47-
CGO_CFLAGS: "O -D__BLST_PORTABLE__"
4845
with:
4946
context: .
5047
push: true
48+
build-args: |
49+
VERSION=${{ steps.vars.outputs.tag }}
50+
CGO_CFLAGS="-O -D__BLST_PORTABLE__"
5151
tags: flashbots/mev-boost:latest-portable,flashbots/mev-boost:${{ steps.vars.outputs.tag }}-portable
5252
platforms: linux/amd64,linux/arm64
5353

Dockerfile

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
# syntax=docker/dockerfile:1
22
FROM golang:1.18 as builder
3+
ARG VERSION
4+
ARG CGO_CFLAGS
35
WORKDIR /build
46
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 .
68

79
FROM alpine
8-
9-
RUN apk add --no-cache libgcc libstdc++ libc6-compat
10+
RUN apk add --no-cache libstdc++ libc6-compat
1011
WORKDIR /app
1112
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
1213
COPY --from=builder /build/mev-boost /app/mev-boost

Makefile

+8-10
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ build:
1414

1515
.PHONY: build-portable
1616
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 .
1818

1919
.PHONY: build-testcli
2020
build-testcli:
@@ -55,17 +55,15 @@ cover-html:
5555
run-mergemock-integration: build
5656
./scripts/run_mergemock_integration.sh
5757

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-
6658
.PHONY: docker-image
6759
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
6967
docker tag mev-boost:latest ${DOCKER_REPO}:${VERSION}
7068
docker tag mev-boost:latest ${DOCKER_REPO}:latest
7169

0 commit comments

Comments
 (0)