Remove additional apk update in Dockerfile (#1617)

This commit is contained in:
Peter Dave Hello
2023-01-03 01:41:46 +08:00
committed by GitHub
parent df25ead15a
commit 7ea9225277

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 update && apk --no-cache upgrade
RUN apk --no-cache upgrade
# Create nonroot user
RUN mkdir -p /home/prowler && \