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