File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ RUN deno cache src/server.ts
12
12
13
13
FROM cache AS build
14
14
RUN deno check src/server.ts
15
- RUN deno compile --unstable-otel --allow-net --allow-env --allow-read --allow-sys --allow-run --output=/usr/on-the-edge src/server.ts
15
+ RUN deno compile --unstable-otel --allow-net --allow-env --allow-read --allow-sys --allow-run --allow-scripts=npm:protobufjs -- output=/usr/on-the-edge src/server.ts
16
16
17
17
FROM build AS final
18
18
RUN rm -r /usr/app
Original file line number Diff line number Diff line change 20
20
"tasks" : {
21
21
"check" : " deno check src/server.ts" ,
22
22
"test" : " deno test --allow-read --allow-env --allow-net" ,
23
- "start" : " deno run --unstable-otel --allow-read --allow-env --allow-net --allow-sys --allow-run ./src/server.ts" ,
23
+ "start" : " deno run --unstable-otel --allow-read --allow-env --allow-net --allow-sys --allow-run --allow-scripts=npm:protobufjs ./src/server.ts" ,
24
24
"check-deps" : " deno run -A jsr:@check/deps"
25
25
},
26
26
"nodeModulesDir" : " auto"
You can’t perform that action at this time.
0 commit comments