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.
1 parent fd61319 commit 4da9ae1Copy full SHA for 4da9ae1
.github/workflows/cicd.yaml
@@ -53,8 +53,8 @@ jobs:
53
54
- name: Login to AWS ECR
55
run: |
56
- aws configure set aws_access_key_id ${ {secrets.AWS_ACCESS_KEY_ID }}
57
- aws configure set aws_secret_access_key ${ {secrets.AWS_SECRET_ACCESS_KEY }}
+ aws configure set aws_access_key_id ${{secrets.AWS_ACCESS_KEY_ID }}
+ aws configure set aws_secret_access_key ${{secrets.AWS_SECRET_ACCESS_KEY }}
58
aws ecr get-login-password --region eu-north-1 | docker login --username AWS --password-stdin 843369994444.dkr.ecr.eu-north-1.amazonaws.com
59
60
- name: Build Docker Image
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM python:3.9
+FROM python:3.10-slim
2
3
WORKDIR /app
4
0 commit comments