Skip to content

Commit

Permalink
Resolved Dockerfile Add/Copy Issue
Browse files Browse the repository at this point in the history
Signed-off-by: David Deal <ddeal@linuxfoundation.org>
  • Loading branch information
dealako committed Aug 31, 2023
1 parent a20f1c1 commit 2c1119d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cla-backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
FROM public.ecr.aws/lambda/python:3.7

# Copy requirements.txt
ADD requirements.txt requirements-test.txt ${LAMBDA_TASK_ROOT}
COPY requirements.txt requirements-test.txt ${LAMBDA_TASK_ROOT}

# Copy function code
ADD *.py .serverless-wsgi serverless-authorizer.yml ${LAMBDA_TASK_ROOT}
COPY *.py .serverless-wsgi serverless-authorizer.yml ${LAMBDA_TASK_ROOT}
# Add the CLA library folder
ADD /cla ${LAMBDA_TASK_ROOT}/cla

# Install the specified packages
Expand Down

0 comments on commit 2c1119d

Please sign in to comment.