Hi everyone,
We are enjoying the dagger experience so far but i'm struggling with specifying a CMD and an EXPOSE.
I have something like: PythonSDK
container = container.with_workdir('/widgets')
container = container.with_exposed_port(80)
container = container.with_entrypoint(["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"])
And then it gets published to a private ECR with no problems.
When we inspect the image no CMD, no WORKDIR, no EXPOSE and NO ENTRYPOINT are added.
When we try to docker run it fails.
Are we missing something?
Thanks in advance