-
does buildbuddy's docker image not have any bash support? running this to exec command on the container
got this
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hey Wendy, We run a stripped down "distroless" base image which only contains our application and our runtime dependencies. This greatly reduces both the size of the image and improves our security posture. You can read more about distroless images here: https://github.com/GoogleContainerTools/distroless If you'd like to build your own image with whatever tools you'd like on it - you can swap out this base image here: Line 232 in ca04893 And build the image here: buildbuddy/server/cmd/buildbuddy/BUILD Line 40 in 94d9d95 - Siggi |
Beta Was this translation helpful? Give feedback.
Hey Wendy,
We run a stripped down "distroless" base image which only contains our application and our runtime dependencies. This greatly reduces both the size of the image and improves our security posture. You can read more about distroless images here: https://github.com/GoogleContainerTools/distroless
If you'd like to build your own image with whatever tools you'd like on it - you can swap out this base image here:
buildbuddy/WORKSPACE
Line 232 in ca04893
And build the image here:
buildbuddy/server/cmd/buildbuddy/BUILD
Line 40 in 94d9d95
- Siggi