Skip to content

Commit 792e098

Browse files
committed
Install additional dependencies (curl, wget, git) in Docker build step
1 parent 2b3cf70 commit 792e098

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ await RunAsync("docker",
5454
"-w /app " +
5555
"-e NODE_OPTIONS=\"--max-old-space-size=8192\" " +
5656
"node:24-slim " +
57-
"sh -c \"npm ci && npm run build && cp -r dist/. /output/\"",
57+
"sh -c \"apt-get update && apt-get install -y curl wget git && npm ci && npm run build && cp -r dist/. /output/\"",
5858
configureEnvironment: env => env.Add("MSYS_NO_PATHCONV", "1"));
5959
});
6060

0 commit comments

Comments
 (0)