File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed
docs/examples/customization/sysctl Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 4
4
"spec" : {
5
5
"initContainers" : [{
6
6
"name" : " sysctl" ,
7
- "image" : " alpine:3.22" ,
7
+ "image" : " alpine:3.22.1 " ,
8
8
"securityContext" : {
9
9
"privileged" : true
10
10
},
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- FROM alpine:3.22
15
+ FROM alpine:3.22.1
16
16
17
17
RUN echo "@testing https://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories
18
18
RUN apk update \
Original file line number Diff line number Diff line change 11
11
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
- FROM alpine:3.22 AS builder
14
+ FROM alpine:3.22.1 AS builder
15
15
16
16
COPY . /
17
17
@@ -21,7 +21,7 @@ RUN apk update \
21
21
&& /build.sh
22
22
23
23
# Use a multi-stage build
24
- FROM alpine:3.22
24
+ FROM alpine:3.22.1
25
25
26
26
ENV PATH=$PATH:/usr/local/luajit/bin:/usr/local/nginx/sbin:/usr/local/nginx/bin
27
27
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ RUN apk update \
23
23
&& apk upgrade \
24
24
&& /chroot.sh
25
25
26
- FROM alpine:3.22
26
+ FROM alpine:3.22.1
27
27
28
28
ARG TARGETARCH
29
29
ARG VERSION
Original file line number Diff line number Diff line change 1
1
ARG E2E_BASE_IMAGE
2
2
FROM ${E2E_BASE_IMAGE} AS BASE
3
3
4
- FROM alpine:3.22
4
+ FROM alpine:3.22.1
5
5
6
6
RUN apk update \
7
7
&& apk upgrade && apk add -U --no-cache \
You can’t perform that action at this time.
0 commit comments