Files
ActionKit/Containerfile
T

7 lines
333 B
Docker
Raw Normal View History

2025-02-14 11:29:06 +01:00
FROM node:lts-alpine
2024-03-04 18:26:50 +01:00
2025-12-14 18:53:38 +01:00
RUN apk add --no-cache ca-certificates curl podman kubectl kustomize git bash openssl buildah && \
2025-12-14 22:39:04 +01:00
echo 'rc_cgroup_mode="unified"' >> /etc/rc.conf && \
2026-07-31 22:20:12 +02:00
curl -sfL https://raw.githubusercontent.com/aquasecurity/trivy/main/contrib/install.sh | sh -s -- -b /usr/local/bin v0.72.0
2025-02-14 11:29:06 +01:00
VOLUME /var/lib/containers