We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2116c98 + 42fc23d commit 4a66dc3Copy full SHA for 4a66dc3
app-service-template/Dockerfile
@@ -4,6 +4,10 @@ FROM python:3.10-alpine3.20
4
LABEL license='SPDX-License-Identifier: Apache-2.0' \
5
copyright='Copyright (c) 2024: IOTech'
6
7
+RUN apk add --update --no-cache git
8
+# Ensure using latest versions of all installed packages to avoid any recent CVEs
9
+RUN apk --no-cache upgrade
10
+
11
# Must specify root to the parent directory of app-functions-sdk-python source folder with --build-context argument
12
# when running docker build command
13
COPY --from=root /src /src
0 commit comments