fix(Dockerfile): add curl-dev to base image (#27)

This commit is contained in:
Víctor Fernández Poyatos
2024-08-12 12:34:55 +02:00
committed by GitHub
parent a2ab216531
commit 4f99518d52
+1 -1
View File
@@ -2,7 +2,7 @@ FROM python:3.12-alpine AS build
LABEL maintainer="https://github.com/prowler-cloud/api"
RUN apk --no-cache add gcc=13.2.1_git20240309-r0 python3-dev=3.12.3-r1 musl-dev=1.2.5-r0 linux-headers=6.6-r0
RUN apk --no-cache add gcc=13.2.1_git20240309-r0 python3-dev=3.12.3-r1 musl-dev=1.2.5-r0 linux-headers=6.6-r0 curl-dev=8.9.0-r0
RUN apk --no-cache upgrade && \
addgroup -g 1000 prowler && \