Skip to content

Commit

Permalink
Merge pull request #17 from barnabasbusa/master
Browse files Browse the repository at this point in the history
Create dockerfile and github action to build images
  • Loading branch information
protolambda authored Oct 17, 2023
2 parents cc94f72 + 1f4d139 commit 3c6266a
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/build-push.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Build docker image
on:
push:
branches:
- master
tags:
- '**'

jobs:
build-push:
name: build-push
runs-on: ubuntu-latest
steps:
- name: Checkout this repo
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Context for Buildx
shell: bash
id: buildx-context
run: |
docker context create builders
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
endpoint: builders
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: protolambda/eth2-val-tools
flavor: latest=true
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: docker-build-push
id: docker_build
uses: docker/build-push-action@v4
with:
context: .
file: Dockerfile
tags: ${{ steps.meta.outputs.tags }}
push: true
platforms: linux/amd64,linux/arm64
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM golang:1.20 AS build-env
COPY * /src
WORKDIR /src
RUN go install .
RUN go build -o /bin/eth2-val-tools

FROM debian:stable-slim
WORKDIR /app
COPY --from=build-env /bin/eth2-val-tools /app/
ENTRYPOINT ["./eth2-val-tools"]

0 comments on commit 3c6266a

Please sign in to comment.