Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit 65d7080

Browse files
committed
Remove --update to apk in Dockerfiles
Signed-off-by: JoshVanL <[email protected]>
1 parent e6b775c commit 65d7080

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
FROM alpine:3.10
33
LABEL description="OIDC reverse proxy authenticator based on Kubernetes"
44

5-
RUN apk --no-cache --update add ca-certificates
5+
RUN apk --no-cache add ca-certificates
66

77
COPY ./bin/kube-oidc-proxy-linux /usr/bin/kube-oidc-proxy
88

test/tools/audit-webhook/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM alpine:3.10
33

44
LABEL description="A audit webhook sink to read audit events and write to file."
55

6-
RUN apk --no-cache --update add ca-certificates
6+
RUN apk --no-cache add ca-certificates
77

88
COPY ./bin/audit-webhook /usr/bin/audit-webhook
99

test/tools/fake-apiserver/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM alpine:3.10
33

44
LABEL description="A fake API server that will respond to requests with the same body and headers."
55

6-
RUN apk --no-cache --update add ca-certificates
6+
RUN apk --no-cache add ca-certificates
77

88
COPY ./bin/fake-apiserver-linux /usr/bin/fake-apiserver
99

test/tools/issuer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM alpine:3.10
33

44
LABEL description="A basic OIDC issuer that prsents a well-known and certs endpoint."
55

6-
RUN apk --no-cache --update add ca-certificates
6+
RUN apk --no-cache add ca-certificates
77

88
COPY ./bin/oidc-issuer-linux /usr/bin/oidc-issuer
99

0 commit comments

Comments
 (0)