Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
freigeistig committed Mar 25, 2024
2 parents d519660 + 1d6c721 commit 35329ad
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Docker Image CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:

build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Vendor mod file
run: go mod vendor
- name: Build the Docker image
run: docker build . --file Dockerfile --tag ghcr.io/debabky/relayer-svc && docker push ghcr.io/debabky/relayer-svc
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.20-alpine as buildbase
FROM golang:1.22-alpine as buildbase

RUN apk add git build-base

Expand Down

0 comments on commit 35329ad

Please sign in to comment.