feat(Dockerfile): add curl package to docker image (#2812)

This commit is contained in:
Nacho Rivera
2023-09-05 15:21:46 +02:00
committed by GitHub
parent c996a562e6
commit 973e3138fe

View File

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