This repository was archived by the owner on May 4, 2022. It is now read-only.
Commit 8e79388
committed
Fix Go pinning
Go pinning was not working before because multiple versions of go were being installed via apt:
One to build prybar and one for the actual go language config. Ideally these two versions of Go can be independent
of each other. With this change, a specific version Go is downloaded directly from the golang site and is installed in
/usr/local/go. This is then added to the PATH so once the image is built, anything run in the container will use the version
of go set in the go.toml config.1 parent c9c8de9 commit 8e79388
2 files changed
+3
-6
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
44 | 44 | | |
45 | 45 | | |
46 | 46 | | |
47 | | - | |
| 47 | + | |
48 | 48 | | |
49 | 49 | | |
50 | 50 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
9 | | - | |
10 | | - | |
11 | | - | |
12 | 9 | | |
13 | 10 | | |
14 | | - | |
15 | 11 | | |
16 | 12 | | |
17 | 13 | | |
18 | | - | |
| 14 | + | |
| 15 | + | |
19 | 16 | | |
20 | 17 | | |
21 | 18 | | |
| |||
0 commit comments