File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ COPY supervisord.conf /etc
70
70
# ==========
71
71
RUN mkdir -p /opt/selenium /opt/selenium/assets /var/run/supervisor /var/log/supervisor \
72
72
&& touch /opt/selenium/config.toml \
73
- && chmod -R 664 /opt/selenium /opt/selenium/assets /var/run/supervisor /var/log/supervisor /etc/passwd \
73
+ && chmod -R 755 /opt/selenium /opt/selenium/assets /var/run/supervisor /var/log/supervisor /etc/passwd \
74
74
&& wget --no-verbose https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.7.0/selenium-server-4.7.2.jar \
75
75
-O /opt/selenium/selenium-server.jar \
76
76
&& wget --no-verbose https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-http-jdk-client/4.7.2/selenium-http-jdk-client-4.7.2.jar \
@@ -85,11 +85,11 @@ RUN mkdir -p /opt/selenium /opt/selenium/assets /var/run/supervisor /var/log/su
85
85
RUN curl -fLo /tmp/cs https://github.com/coursier/launchers/raw/master/coursier \
86
86
&& chmod +x /tmp/cs \
87
87
&& mkdir -p /external_jars \
88
- && chmod -R 664 /external_jars
88
+ && chmod -R 755 /external_jars
89
89
90
90
RUN /tmp/cs fetch --classpath --cache /external_jars io.opentelemetry:opentelemetry-exporter-jaeger:1.19.0 io.grpc:grpc-netty:1.50.2 > /external_jars/.classpath.txt
91
91
92
- RUN chmod 775 /external_jars/.classpath.txt
92
+ RUN chmod 664 /external_jars/.classpath.txt
93
93
94
94
# ===================================================
95
95
# Run the following commands as non-privileged user
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ RUN mkdir -p ${HOME}/.vnc \
143
143
# ==========
144
144
# Relaxing permissions for OpenShift and other non-sudo environments
145
145
# ==========
146
- RUN sudo chmod -R 664 ${HOME} \
146
+ RUN sudo chmod -R 755 ${HOME} \
147
147
&& sudo chgrp -R 0 ${HOME} \
148
148
&& sudo chmod -R g=u ${HOME}
149
149
You can’t perform that action at this time.
0 commit comments