Skip to content

Commit 75f3490

Browse files
authored
Merge pull request #4 from mgwidmann/fix-dockerfile
Requirements.txt incorrectly referenced in the Dockerfile
2 parents 3322206 + 409f36e commit 75f3490

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ COPY custom_connector_queryfilter ${LAMBDA_TASK_ROOT}
88
# Install the function's dependencies using file requirements.txt
99
# from your project folder.
1010
COPY requirements.txt .
11-
RUN pip3 install -r ../requirements.txt --target "${LAMBDA_TASK_ROOT}"
11+
RUN pip3 install -r ./requirements.txt --target "${LAMBDA_TASK_ROOT}"
1212

1313
# Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile)
1414
CMD [ "custom_connector_example.handlers.lambda_handler.salesforce_lambda_handler" ]

0 commit comments

Comments
 (0)