forked from kubernetes/dns
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed sidecar running group for arm arch
The base image used to build the containers for the arm arch (both arm and arm64) uses the pair nobody:nogroup while amd64 arch uses nobody:nobody
- Loading branch information
Showing
3 changed files
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,5 +18,5 @@ MAINTAINER Bowei Du <[email protected]> | |
|
||
ADD bin/ARG_ARCH/ARG_BIN /ARG_BIN | ||
|
||
USER nobody:nobody | ||
USER nobody:ARG_NOBODY | ||
ENTRYPOINT ["/ARG_BIN"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,5 +18,5 @@ MAINTAINER Bowei Du <[email protected]> | |
|
||
ADD bin/ARG_ARCH/ARG_BIN /ARG_BIN | ||
|
||
USER nobody:nobody | ||
USER nobody:ARG_NOBODY | ||
ENTRYPOINT ["/ARG_BIN"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters