Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Snyk] Security upgrade alpine from 3.17 to 3.20 #5014

Merged
merged 2 commits into from
Jul 12, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/helloworld/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.15
FROM alpine:3.20

ADD .artifacts/helloworld /usr/local/bin/helloworld

Expand Down
2 changes: 1 addition & 1 deletion cmd/pipecd/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.13
FROM alpine:3.20

ARG GOOGLE_CLOUD_SDK_VERSION=324.0.0

Expand Down
2 changes: 1 addition & 1 deletion cmd/pipectl/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.13
FROM alpine:3.20

RUN apk add --no-cache git

Expand Down
2 changes: 1 addition & 1 deletion docs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM golang:1.22.4-alpine3.20 AS builder
COPY main.go .
RUN go build -o /server main.go

FROM alpine:3.17
FROM alpine:3.20
RUN apk --no-cache add ca-certificates

COPY --from=builder /server ./
Expand Down
4 changes: 2 additions & 2 deletions manifests/pipecd/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ spec:
{{- if .Values.quickstart.enabled }}
initContainers:
- name: dep-waiter
image: alpine:3.14
image: alpine:3.20
command: ["sh", "-c"]
args:
- |
Expand Down Expand Up @@ -259,7 +259,7 @@ spec:
{{- if .Values.quickstart.enabled }}
initContainers:
- name: dep-waiter
image: alpine:3.14
image: alpine:3.20
command: ["sh", "-c"]
args:
- |
Expand Down
2 changes: 1 addition & 1 deletion tool/piped-base/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.13
FROM alpine:3.20

ARG PIPED_USER=piped
ARG PIPED_USER_GROUP=piped
Expand Down
Loading