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

Change right for /opt/bi/*.sh file. Impact of change on Base/Dockerfi… #1964

Closed
wants to merge 3 commits into from
Closed
Changes from 2 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
9 changes: 9 additions & 0 deletions NodeBase/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,10 @@ COPY start-selenium-node.sh \
# Supervisor configuration file
#==============================
COPY selenium.conf /etc/supervisor/conf.d/
USER root
RUN chmod 644 /etc/supervisor/conf.d/selenium.conf
USER 1200


#==============================
# Generating the VNC password as seluser
Expand Down Expand Up @@ -201,4 +205,9 @@ RUN sudo mkdir -p /tmp/.X11-unix && sudo chmod 1777 /tmp/.X11-unix
# Copying configuration script generator
COPY generate_config /opt/bin/generate_config

# change right for /opt/bin*.sh file
USER root
RUN chmod 775 /opt/bin/*.sh
USER 1200

EXPOSE 5900