Skip to content

Commit

Permalink
Fix go version in docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
janekbaraniewski committed May 11, 2024
1 parent b520c88 commit 88c44ee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:latest

# Build the manager binary
FROM --platform=$BUILDPLATFORM golang:1.18-alpine as builder
FROM --platform=$BUILDPLATFORM golang:1.22-alpine as builder
RUN apk update
RUN apk add make bash
WORKDIR /workspace
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.monitor
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:latest

FROM --platform=$BUILDPLATFORM golang:1.18-buster AS builder
FROM --platform=$BUILDPLATFORM golang:1.22-buster AS builder

WORKDIR /workspace
COPY go.mod go.sum ./
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.webhook
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:latest

# Build the manager binary
FROM --platform=$BUILDPLATFORM golang:1.18-alpine as builder
FROM --platform=$BUILDPLATFORM golang:1.22-alpine as builder
RUN apk update
RUN apk add make bash
WORKDIR /workspace
Expand Down

0 comments on commit 88c44ee

Please sign in to comment.