Skip to content

Commit dfd62c5

Browse files
committed
fix cmd
1 parent 3fb0377 commit dfd62c5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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": "fishersnpregistry.azurecr.io/hello-world-aci:2.0",
21+
"defaultValue": "mcr.microsoft.com/public/acc/samples/aci/helloworld:2.1",
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
@@ -13,4 +13,4 @@ ENV PYTHONUNBUFFERED=1
1313

1414
RUN rm -rf /usr/share/nginx/html/
1515
# entrypoint
16-
CMD [ "python3", "main.py"]
16+
CMD [ "python3.10", "main.py"]

hello-world/AKS/helloworld.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ metadata:
77
name: helloworld
88
spec:
99
containers:
10-
- image: "fishersnpregistry.azurecr.io/hello-world-aks:1.1"
10+
- image: "mcr.microsoft.com/public/acc/samples/aks/helloworld:1.2"
1111
command:
12-
- python3
12+
- python3.10
1313
- main.py
1414
imagePullPolicy: Always
1515
name: helloworld

0 commit comments

Comments
 (0)