You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Dockerfile
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,15 @@
1
-
FROM alpine:3.14.3
1
+
FROM alpine:3.15.4
2
2
3
-
RUN apk add --no-cache \
4
-
curl \
5
-
bash \
6
-
git \
7
-
&& rm -rf /var/cache/apk/*
3
+
RUN apk update && apk --no-cache add bash curl git
8
4
9
5
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
10
6
11
7
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
8
+
| tar xz -C /usr/local/bin
9
+
10
+
RUN git config --global --add safe.directory /github/workspace
0 commit comments