Commit 67f3520
committed
fix deno failure in bridge docker build (#929)
Looks like `deno_core` depends on `rusty_v8` which will try to download
prebuilt a binary v8 archive via some python script, and when that fails
it'll try again with `curl`.
## Motivation
The Python download was failing. Why? No idea. The curl fallback also
failed because curl was not installed.
## Solution
This diff adds `curl` to the list of installed packages for the builder
stage of the `Dockerfile` which allows the `cargo build` layer to
complete successfully.1 parent baa093e commit 67f3520
1 file changed
+3
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
8 | | - | |
| 7 | + | |
9 | 8 | | |
| 9 | + | |
10 | 10 | | |
| 11 | + | |
11 | 12 | | |
12 | 13 | | |
13 | 14 | | |
| |||
0 commit comments