chore: upgrade Node.js runtime to v24 across codebase #419

Merged
jason.woltje merged 438 commits from fix/auth-frontend-remediation into main 2026-02-17 01:04:47 +00:00
Showing only changes of commit 281c7ab39b - Show all commits

View File

@@ -1,4 +1,4 @@
import { Injectable, Logger, Optional } from "@nestjs/common";
import { Inject, Injectable, Logger, Optional } from "@nestjs/common";
import { ConfigService } from "@nestjs/config";
import { randomBytes } from "crypto";
import Docker from "dockerode";
@@ -86,7 +86,7 @@ export class DockerSandboxService {
constructor(
private readonly configService: ConfigService,
@Optional() docker?: Docker
@Optional() @Inject("DOCKER_CLIENT") docker?: Docker
) {
const socketPath = this.configService.get<string>(
"orchestrator.docker.socketPath",