Skip to content

Commit

Permalink
added docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Jackson committed Aug 5, 2024
1 parent dc601b9 commit 4565192
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/build-images.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Build images

on:
push:
branches:
- main

jobs:
build-miner-image:
name: Build Miner Image
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Setup QEMU
uses: docker/setup-qemu-action@v3

- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to Azure Container Registry
uses: docker/login-action@v3
with:
registry: "wizedkyle.azurecr.io"
username: ${{ secrets.ACR_USERNAME }}
password: ${{ secrets.ACR_PASSWORD }}

- name: Build and push image
uses: docker/build-push-action@v5
with:
context: .
push: true
file: build/miner/Dockerfile
platforms: linux/amd64
tags:
wizedkyle.azurecr.io/miner:latest
wizedkyle.azurecr.io/miner:1.0.${{ github.run_id }}
10 changes: 10 additions & 0 deletions build/miner/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM golang:1.22.5-alpine3.20

WORKDIR /go/src/miner

COPY . /go/src/miner

RUN go get ./...
RUN go build ./cmd/miner

ENTRYPOINT ["./miner"]

0 comments on commit 4565192

Please sign in to comment.