Kevin Hahn
Kevin Hahn
That's correct I'm not using Windows containers. What would you like as a reproduction? I can setup a simple build and give you some verbose logs.
super simple build: ```Dockerfile # syntax=docker/dockerfile:1 FROM node:20.5 CMD ["node", "index.js"] ``` output: ``` PS C:\clipboard> docker build . [+] Building 99.1s (7/7) FINISHED => [internal] load .dockerignore 0.0s =>...
I just tried the following: 1. `docker run -d --name jaeger -p "6831:6831/udp" -p "16686:16686" --restart unless-stopped jaegertracing/all-in-one` 2. docker buildx create --use \ --name mybuilder \ --driver docker-container \...
bump. Any idea what might be going on here?
@thaJeztah I tried it out in WSL and it took a while but I actually got an error which is new to me. ``` [+] Building 22.7s (3/3) FINISHED docker:default...
Thanks I've deleted that plugin to stay in sync. No sorry I understand that was a bit confusing. This is just on windows, so under `%userprofile%\.docker\cli-plugins\docker-buildx.exe` just my logged in...
I'm also having this issue when trying to do the same on a `System.Text.Json JsonObject` I wonder if we could make an explicit cast to a custom dictionary class for...
Thanks, I'm not totally sure how his code was suppoed to work. But this worked for me: ```js { resolveId(id: string): string | undefined { if (id === 'css-tree') {...
I'm also having issues importing modules that import from '$app/environment' my errors is a bit different though: ``` Error: Cannot find package '__sveltekit' imported from C:\dev\DefaultTemplates\sveltekit\node_modules\.pnpm\@[email protected][email protected][email protected]\node_modules\@sveltejs\kit\src\runtime\app\environment.js ``` not sure if...
> @hahn-kev What version of vitest are you using? > > [vitest-dev/vitest#4067](https://github.com/vitest-dev/vitest/issues/4067) 0.34.3 looks like that's my issue, thanks! I'll just roll back for now.