Skip to content

Commit 472da7e

Browse files
committed
Remove unnecessary curl and wget installations in Docker build step
1 parent 792e098 commit 472da7e

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 \"apt-get update && apt-get install -y curl wget git && npm ci && npm run build && cp -r dist/. /output/\"",
57+
"sh -c \"apt-get update && apt-get install -y 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)