We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d903f40 + 77299a1 commit f12b8baCopy full SHA for f12b8ba
Dockerfile
@@ -1,15 +1,15 @@
1
-FROM alpine:3.14.3
+FROM alpine:3.15.4
2
3
-RUN apk add --no-cache \
4
- curl \
5
- bash \
6
- git \
7
- && rm -rf /var/cache/apk/*
+RUN apk update && apk --no-cache add bash curl git
8
9
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
10
11
RUN curl -sL https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv3.8.7/kustomize_v3.8.7_linux_amd64.tar.gz \
12
- | tar xz -C /usr/local/bin
+ | tar xz -C /usr/local/bin
+
+RUN git config --global --add safe.directory /github/workspace
+RUN rm -rf /var/cache/apk/*
13
14
COPY kustdiff /kustdiff
15
0 commit comments