fix(dockerfile): Use latest curl (#2897)

This commit is contained in:
Pepe Fagoaga
2023-10-03 08:48:32 +02:00
committed by GitHub
parent 1e3ec10a1a
commit 39b6ce3352

View File

@@ -3,7 +3,8 @@ FROM python:3.9-alpine
LABEL maintainer="https://github.com/prowler-cloud/prowler"
# Update system dependencies
RUN apk --no-cache upgrade && apk --no-cache add curl=8.2.1-r0
#hadolint ignore=DL3018
RUN apk --no-cache upgrade && apk --no-cache add curl
# Create nonroot user
RUN mkdir -p /home/prowler && \