1 parent 0c7dedb commit 68b38a4Copy full SHA for 68b38a4
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 9000:8080 local/test basic-lambda
+ docker run -d --name test-container -p 8080 local/test basic-lambda
45
sleep 5
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"
+ curl -XPOST "http://localhost:8080/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