Docker exec
#2369
|
does buildbuddy's docker image not have any bash support? running this to exec command on the container got this |
Answered by
siggisim
Aug 4, 2022
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 |
1 reply
Answer selected by
siggisim
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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