Skip to content

Commit 8c21c75

Browse files
authored
Merge pull request #23 from henrybell/henrybell-verify-docker
Update golang builder version
2 parents 600d64a + 08b8c7d commit 8c21c75

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

tutorials/deploy-hooks-run/app-config/hello-app/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.19 AS builder
15+
FROM golang:1.22 AS builder
1616
WORKDIR /go/src/hello
1717
COPY . .
1818
RUN CGO_ENABLED=0 go build -o /go/bin/hello

tutorials/deployment-strategies-run/app-config/demo-app/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.19 AS builder
15+
FROM golang:1.22 AS builder
1616
WORKDIR /go/src/demo
1717
COPY . .
1818
RUN CGO_ENABLED=0 go build -o /go/bin/demo

tutorials/e2e-run/app-config/hello-app/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.19 AS builder
15+
FROM golang:1.22 AS builder
1616
WORKDIR /go/src/hello
1717
COPY . .
1818
RUN CGO_ENABLED=0 go build -o /go/bin/hello

tutorials/verification-run/app-config/hello-app/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.19 AS builder
15+
FROM golang:1.22 AS builder
1616
WORKDIR /go/src/hello
1717
COPY . .
1818
RUN CGO_ENABLED=0 go build -o /go/bin/hello

0 commit comments

Comments
 (0)