Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: docker file Root role, sudoer.d/ file name can not . #1879

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docker/Dockerfile.ilogtail-build-linux
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,10 @@ RUN if getent passwd $USERNAME; then userdel -f $USERNAME; fi && \
if getent group $GROUPNAME; then groupdel $GROUPNAME; fi && \
groupadd --gid $GROUP_GID $USERNAME && \
useradd --uid $USER_UID --gid $GROUP_GID -m $USERNAME && \
echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME && \
chmod 0440 /etc/sudoers.d/$USERNAME && \
# the filename should not have the . or ~ symbol in its name
USER_SUDOER_FILE=$(echo $USERNAME | sed 's/\./-/g'); \
echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USER_SUDOER_FILE && \
chmod 0440 /etc/sudoers.d/$USER_SUDOER_FILE && \
chown -R $USERNAME:$GROUPNAME $(eval echo ~$USERNAME) && \
chmod 755 $(eval echo ~$USERNAME)

Expand Down