Skip to content

Commit f81765b

Browse files
authored
Merge pull request #5320 from natasha41575/updatedeps
small fixes
2 parents 94181b1 + a2ceaff commit f81765b

File tree

4 files changed

+30
-2
lines changed

4 files changed

+30
-2
lines changed

hack/krmFunctionBenchmark/benchmark.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
set -e
77

88
KUSTOMIZE_EXEC=kustomize
9-
KUSTOMIZE_FLAGS="build --enable_alpha_plugins --enable-exec"
9+
KUSTOMIZE_FLAGS="build --enable-exec --enable-alpha-plugins"
1010

1111
function build_label_namespace_exec {
1212
cd label_namespace/execfn

hack/krmFunctionBenchmark/label_namespace/execfn/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ FROM alpine:latest
55

66
ENV BUILD_HOME=/usr/local/build
77
RUN apk update && apk add --no-cache git nodejs npm
8-
RUN npm install -g typescript
8+
COPY ["./package.json", "./package-lock.json", "./"]
9+
RUN npm install -g
910

1011
RUN mkdir -p $BUILD_HOME
1112

hack/krmFunctionBenchmark/label_namespace/execfn/package-lock.json

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "execfn",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"author": "",
10+
"license": "ISC"
11+
}

0 commit comments

Comments
 (0)