Skip to content
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 hooks/persistence-elastic/dashboard-importer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# SPDX-License-Identifier: Apache-2.0

FROM alpine:3.22
FROM alpine:3.23

RUN apk add --no-cache curl bash

Expand Down
4 changes: 2 additions & 2 deletions scanners/nikto/scanner/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
#
# SPDX-License-Identifier: Apache-2.0

FROM alpine:3.22 AS build
FROM alpine:3.23 AS build
ARG scannerVersion
RUN apk add git
RUN git clone --depth 1 https://github.com/sullo/nikto.git /nikto

FROM alpine:3.22
FROM alpine:3.23

ENV PATH=${PATH}:/nikto

Expand Down
2 changes: 1 addition & 1 deletion scanners/nmap/scanner/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# SPDX-License-Identifier: Apache-2.0

FROM alpine:3.22
FROM alpine:3.23
ARG scannerVersion
RUN apk add --no-cache nmap=$scannerVersion nmap-scripts=$scannerVersion
RUN addgroup --system --gid 1001 nmap && adduser nmap --system --uid 1001 --ingroup nmap
Expand Down
2 changes: 1 addition & 1 deletion scanners/test-scan/scanner/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# SPDX-License-Identifier: Apache-2.0

FROM alpine:3.22
FROM alpine:3.23
RUN addgroup --system --gid 1001 test && adduser test --system --uid 1001 --ingroup test
WORKDIR /home/securecodebox/
USER 1001
Expand Down
Loading