winglang / wing

A programming language for the cloud ☁️ A unified programming model, combining infrastructure and runtime code into one language ⚡
https://winglang.io
Other
5.04k stars 196 forks source link

Playground error with `ex.DynamoDB`: `enoent spawn docker` #5783

Closed skyrpex closed 7 months ago

skyrpex commented 8 months ago

Playground reproduction here.

The code that triggers the issue is:

bring ex;

new ex.DynamodbTable(
  name: "table",
  hashKey: "id",
  attributeDefinitions: {
    id: "S",
  },
);
skyrpex commented 8 months ago

Fly is having an incident right now. I think that's the cause of the issue: https://status.flyio.net/

MarkMcCulloh commented 8 months ago

Did this ever work? The container running the console server was previously a plain node one, and now its a super minimal distroless image https://github.com/winglang/playground/pull/732

skyrpex commented 8 months ago

Maybe not, I don't really know. @eladcon when you have time, can you chime in?

eladcon commented 8 months ago

docker doesn't work in the playground see #4279

Chriscbr commented 7 months ago

Closing since we have deprecated ex.DynamoDB in favor of the dynamodb winglib.