Skip to content

Commit

Permalink
Dockerfile: Bump to haproxy 2.4.24, go 1.19.12 (#1022)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrueg authored Sep 1, 2023
1 parent a673fae commit 9a4de6b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.19.10
go-version: 1.19.12
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
Expand Down
4 changes: 2 additions & 2 deletions builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM golang:1.19.10-alpine AS builder
FROM golang:1.19.12-alpine AS builder

ARG GIT_TAG
WORKDIR /src
Expand All @@ -28,7 +28,7 @@ RUN GIT_TAG=${GIT_TAG:-latest}\
-ldflags "-s -w -X ${VERSION_PKG}.RELEASE=${GIT_TAG} -X ${VERSION_PKG}.COMMIT=${GIT_COMMIT} -X ${VERSION_PKG}.REPO=${GIT_REPO}"\
-o haproxy-ingress pkg/main.go

FROM haproxy:2.4.23-alpine
FROM haproxy:2.4.24-alpine

USER root

Expand Down
2 changes: 1 addition & 1 deletion rootfs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM haproxy:2.4.23-alpine
FROM haproxy:2.4.24-alpine

USER root

Expand Down

0 comments on commit 9a4de6b

Please sign in to comment.