Skip to content

Commit ce10eaa

Browse files
committed
update helloworld image bases to latest azure linux
1 parent 3c794eb commit ce10eaa

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

hello-world/ACI/app/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ WORKDIR ${PROJECT_DIR}/confidential-container-demos
44
COPY . ./
55
RUN chmod +x hello-world/get_verbose_report.sh && ./hello-world/get_verbose_report.sh
66

7-
FROM mcr.microsoft.com/cbl-mariner/base/python:3.9
7+
FROM mcr.microsoft.com/azurelinux/base/python:3.12
88
RUN pip install flask --no-cache-dir
99

1010
# all commands start from this directory

hello-world/ACI/arm-template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
},
1919
"image": {
2020
"type": "string",
21-
"defaultValue": "mcr.microsoft.com/acc/samples/aci/helloworld:2.7",
21+
"defaultValue": "mcr.microsoft.com/acc/samples/aci/helloworld:2.8",
2222
"metadata": {
2323
"description": "Container image to deploy. Should be of the form repoName/imagename:tag for images stored in public Docker Hub, or a fully qualified URI for other registries. Images from private registries require additional registry credentials."
2424
}

hello-world/AKS/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ WORKDIR ${PROJECT_DIR}/confidential-container-demos
44
COPY . ./
55
RUN chmod +x hello-world/get_verbose_report.sh && ./hello-world/get_verbose_report.sh
66

7-
FROM mcr.microsoft.com/cbl-mariner/base/python:3.9
7+
FROM mcr.microsoft.com/azurelinux/base/python:3.12
88
RUN tdnf update -y && tdnf -y upgrade && tdnf -y install nginx && tdnf clean all
99

1010
WORKDIR /app

hello-world/AKS/helloworld.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
name: helloworld
88
spec:
99
containers:
10-
- image: "mcr.microsoft.com/acc/samples/aks/helloworld:1.5"
10+
- image: "mcr.microsoft.com/acc/samples/aks/helloworld:1.6"
1111
command:
1212
- python3.10
1313
- main.py

0 commit comments

Comments
 (0)