Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

build(deps): update golang docker tag to v1.20.4 #9659

Merged
merged 1 commit into from
May 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Use the official Golang image to create a build artifact.
# This is based on Debian and sets the GOPATH to /go.
FROM golang:1.20.3-alpine3.16 as builder
FROM golang:1.20.4-alpine3.16 as builder

WORKDIR /go/src/github.com/keptn/keptn/api

Expand Down
2 changes: 1 addition & 1 deletion approval-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Use the official Golang image to create a build artifact.
# This is based on Debian and sets the GOPATH to /go.
FROM golang:1.20.3-alpine3.16 as builder
FROM golang:1.20.4-alpine3.16 as builder

WORKDIR /go/src/github.com/keptn/keptn/approval-service

Expand Down
2 changes: 1 addition & 1 deletion cli/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Use the official Golang image to create a build artifact.
# This is based on Debian and sets the GOPATH to /go.
FROM golang:1.20.3-alpine3.16 as builder
FROM golang:1.20.4-alpine3.16 as builder

WORKDIR /go/src/github.com/keptn/keptn/cli

Expand Down
2 changes: 1 addition & 1 deletion distributor/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Use the official Golang image to create a build artifact.
# This is based on Debian and sets the GOPATH to /go.
FROM golang:1.20.3-alpine3.16 as builder
FROM golang:1.20.4-alpine3.16 as builder

WORKDIR /go/src/github.com/keptn/keptn/distributor

Expand Down
2 changes: 1 addition & 1 deletion lighthouse-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Use the official Golang image to create a build artifact.
# This is based on Debian and sets the GOPATH to /go.
FROM golang:1.20.3-alpine3.16 as builder
FROM golang:1.20.4-alpine3.16 as builder

# Copy local code to the container image.
WORKDIR /go/src/github.com/keptn/keptn/lighthouse-service
Expand Down
2 changes: 1 addition & 1 deletion mongodb-datastore/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Use the official Golang image to create a build artifact.
# This is based on Debian and sets the GOPATH to /go.
FROM golang:1.20.3-alpine3.16 as builder
FROM golang:1.20.4-alpine3.16 as builder

WORKDIR /go/src/github.com/keptn/keptn/mongodb-datastore

Expand Down
2 changes: 1 addition & 1 deletion remediation-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Use the official Golang image to create a build artifact.
# This is based on Debian and sets the GOPATH to /go.
FROM golang:1.20.3-alpine3.16 as builder
FROM golang:1.20.4-alpine3.16 as builder

WORKDIR /go/src/github.com/keptn/keptn/remediation-service

Expand Down
2 changes: 1 addition & 1 deletion resource-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Use the official Golang image to create a build artifact.
# This is based on Debian and sets the GOPATH to /go.
FROM golang:1.20.3-alpine3.17 as builder
FROM golang:1.20.4-alpine3.17 as builder

# install additional dependencies
RUN apk update && \
Expand Down
2 changes: 1 addition & 1 deletion secret-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Use the official Golang image to create a build artifact.
# This is based on Debian and sets the GOPATH to /go.
FROM golang:1.20.3-alpine3.16 as builder
FROM golang:1.20.4-alpine3.16 as builder

# install additional dependencies
RUN apk add --no-cache gcc libc-dev git
Expand Down
2 changes: 1 addition & 1 deletion shipyard-controller/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Use the official Golang image to create a build artifact.
# This is based on Debian and sets the GOPATH to /go.
FROM golang:1.20.3-alpine3.16 as builder
FROM golang:1.20.4-alpine3.16 as builder

# install additional dependencies
RUN apk add --no-cache gcc libc-dev git
Expand Down
2 changes: 1 addition & 1 deletion statistics-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Use the official Golang image to create a build artifact.
# This is based on Debian and sets the GOPATH to /go.
FROM golang:1.20.3-alpine3.16 as builder
FROM golang:1.20.4-alpine3.16 as builder

# install additional dependencies
RUN apk add --no-cache gcc libc-dev git
Expand Down
2 changes: 1 addition & 1 deletion webhook-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Use the official Golang image to create a build artifact.
# This is based on Debian and sets the GOPATH to /go.
# https://hub.docker.com/_/golang
FROM golang:1.20.3-alpine3.16 as builder
FROM golang:1.20.4-alpine3.16 as builder

WORKDIR /go/src/github.com/keptn/keptn/webhook-service

Expand Down