Skip to content

Commit

Permalink
Merge pull request #5 from kaleido-io/fix_dockerfile
Browse files Browse the repository at this point in the history
fix makefile golang version
  • Loading branch information
EnriqueL8 authored Sep 10, 2024
2 parents 671feb5 + 4ae38ef commit aa9c0ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
go-version: '1.22'
check-latest: true

- name: Build and Test
Expand All @@ -43,5 +43,5 @@ jobs:
--label build_date=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \
--label tag=${{ steps.build_tag_generator.outputs.BUILD_TAG }} \
--build-arg BASE_IMAGE=ubuntu:22.04 \
--build-arg BUILD_IMAGE=golang:1.21-bullseye \
--build-arg BUILD_IMAGE=golang:1.22-bullseye \
--tag ghcr.io/hyperledger/firefly-fabconnect:${{ steps.build_tag_generator.outputs.BUILD_TAG }} .
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ firefly-fabconnect: ${GOFILES}
go-mod-tidy: .ALWAYS
go mod tidy
docker:
docker build --platform linux/amd64 --build-arg BASE_IMAGE=ubuntu:22.04 --build-arg BUILD_IMAGE=golang:1.21-bullseye -t hyperledger/firefly-fabconnect .
docker build --platform linux/amd64 --build-arg BASE_IMAGE=ubuntu:22.04 --build-arg BUILD_IMAGE=golang:1.22-bullseye -t hyperledger/firefly-fabconnect .
build: firefly-fabconnect-nocgo firefly-fabconnect
.ALWAYS: ;
clean:
Expand Down

0 comments on commit aa9c0ac

Please sign in to comment.