Skip to content

Commit

Permalink
fix: docker build with go 1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
jon4hz committed Feb 11, 2024
1 parent babe1ac commit a13bdaa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
type=semver,event=tag,pattern={{version}}
type=semver,event=tag,pattern={{major}}.{{minor}}
type=ref,event=pr
-
-
name: Build and push the image
uses: docker/build-push-action@v4
with:
Expand All @@ -56,4 +56,4 @@ jobs:
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
cache-to: type=gha,mode=max
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"ansible.python.interpreterPath": "/bin/python"
}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.17-alpine as builder
FROM golang:1.22-alpine as builder

WORKDIR /app

Expand Down

0 comments on commit a13bdaa

Please sign in to comment.