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 b79909b commit d5c8bd7Copy full SHA for d5c8bd7
1 file changed
.github/workflows/dockerized-test.yml
@@ -42,7 +42,12 @@ jobs:
42
- name: Test container manually
43
run: |
44
docker run -d --name test-container -p 9000:8080 local/test basic-lambda
45
- sleep 10
+ sleep 15
46
+ echo "Container logs after startup:"
47
+ docker logs test-container
48
+ echo "Attempting to invoke function:"
49
+ curl -XPOST "http://localhost:9000/2015-03-31/functions/function/invocations" -d '{"command":"test"}' || echo "Invocation failed"
50
+ echo "Final container logs:"
51
docker logs test-container
52
docker kill test-container || true
53
0 commit comments