Skip to content

Commit

Permalink
Update golang Docker tag to v1.20.7 (#82)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Aug 2, 2023
1 parent e0afb41 commit 72d64c2
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.5 as build
FROM golang:1.20.7 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.5
FROM golang:1.20.7

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.5 as build
FROM golang:1.20.7 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.5
FROM golang:1.20.7

ENV GO111MODULE=on

Expand Down

0 comments on commit 72d64c2

Please sign in to comment.