Skip to content

Commit

Permalink
update Dockerfile & workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jdgsmallwood committed Jul 10, 2024
1 parent 8b3349a commit 963e1f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-lambda-function.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
id: login-ecr
uses: jwalton/gh-ecr-login@v1
with:
aws-region: ${{ secrets.AWS_REGION }}
region: ${{ secrets.AWS_REGION }}
access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM public.ecr.aws/lambda/python:3.12
COPY requirements.txt ${LAMBDA_TASK_ROOT}

# Install the specified packages
RUN pip install -r requirements.txt
RUN pip install --no-cache-dir -r requirements.txt

# Copy function code
COPY src/lambda_function.py ${LAMBDA_TASK_ROOT}
Expand Down

0 comments on commit 963e1f1

Please sign in to comment.