You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 24, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+16-3Lines changed: 16 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -77,8 +77,20 @@ custom:
77
77
```
78
78
79
79
The `dockerSsh` option will mount your `$HOME/.ssh/id_rsa` and `$HOME/.ssh/known_hosts` as a
80
-
volume in the docker container. If your SSH key is password protected, you can use `ssh-agent`
81
-
because `$SSH_AUTH_SOCK` is also mounted & the env var set.
80
+
volume in the docker container.
81
+
82
+
In case you want to use a different key, you can specify the path (absolute) to it through `dockerPrivateKey` option:
83
+
84
+
```yaml
85
+
custom:
86
+
pythonRequirements:
87
+
dockerizePip: true
88
+
dockerSsh: true
89
+
dockerPrivateKey: /home/.ssh/id_ed25519
90
+
```
91
+
92
+
If your SSH key is password protected, you can use `ssh-agent`
93
+
because `$SSH_AUTH_SOCK` is also mounted & the env var is set.
82
94
It is important that the host of your private repositories has already been added in your
83
95
`$HOME/.ssh/known_hosts`file, as the install process will fail otherwise due to host authenticity
84
96
failure.
@@ -213,7 +225,7 @@ the names in `slimPatterns`
213
225
214
226
#### Option not to strip binaries
215
227
216
-
In some cases, stripping binaries leads to problems like "ELF load command address/offset not properly aligned", even when done in the Docker environment. You can still slim down the package without `*.so` files with
228
+
In some cases, stripping binaries leads to problems like "ELF load command address/offset not properly aligned", even when done in the Docker environment. You can still slim down the package without `*.so` files with:
0 commit comments