This message was deleted.
# general
s
This message was deleted.
1
e
is it possible to pass a Docker image, that runs an express app for example, to Pulumi’s aws cloud package?
b
theer is no way to execute a docker image as a Lambda
it's all done via code or s3 zips
e
in this example, does
cloud.HttpServer
run on container or serverless infrastructure?
w
That example runs on serverless infrastructure (Lambda in AWS).
e
can that accept a docker image of a server somehow? that would help me use
docker-compose
locally
w
Not with cloud.HttpServer. You can look at examples like https://www.pulumi.com/docs/tutorials/cloudfx/service/ which has
cloud.Service
for containerized workloads.
e
got it, will stick with the containerized approach. Thanks!
😄 1
w
Yep!