Skip to content

Commit

Permalink
Update golang Docker tag to v1.22.6
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Aug 7, 2024
1 parent c934e4d commit aff329e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions customers/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.20.7 as build
FROM golang:1.22.6 as build

RUN mkdir -p /app
RUN apt-get update
Expand All @@ -9,7 +9,7 @@ COPY ./ ./

RUN go build -v -ldflags="-X 'main.version=v1.0.0'" customers.go

FROM golang:1.20.7
FROM golang:1.22.6

ENV GO111MODULE=on

Expand Down
4 changes: 2 additions & 2 deletions orders/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.20.7 as build
FROM golang:1.22.6 as build

RUN mkdir -p /app
RUN apt-get update
Expand All @@ -9,7 +9,7 @@ COPY ./ ./

RUN go build -v -ldflags="-X 'main.version=v1.0.0'" orders.go

FROM golang:1.20.7
FROM golang:1.22.6

ENV GO111MODULE=on

Expand Down

0 comments on commit aff329e

Please sign in to comment.