-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bug: ENV variable SE_VNC_PASSWORD contains sensitive data (#2061)
Signed-off-by: Viet Nguyen Duc <[email protected]>
- Loading branch information
Showing
7 changed files
with
20 additions
and
18 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 |
---|---|---|
|
@@ -4,8 +4,9 @@ LABEL authors="Selenium <[email protected]>" | |
# Arguments to define the version of dependencies to download | ||
ARG VERSION | ||
ARG RELEASE=selenium-${VERSION} | ||
ARG OPENTELEMETRY_VERSION=1.31.0 | ||
ARG GRPC_VERSION=1.60.0 | ||
# Default value should be aligned with upstream Selenium (https://github.com/SeleniumHQ/selenium/blob/trunk/java/maven_deps.bzl) | ||
ARG OPENTELEMETRY_VERSION=1.28.0 | ||
ARG GRPC_VERSION=1.57.1 | ||
|
||
#Arguments to define the user running Selenium | ||
ARG SEL_USER=seluser | ||
|
@@ -115,7 +116,8 @@ COPY supervisord.conf /etc | |
#========== | ||
RUN touch ${SEL_DIR}/config.toml \ | ||
&& wget --no-verbose https://github.com/SeleniumHQ/selenium/releases/download/${RELEASE}/selenium-server-${VERSION}.jar \ | ||
-O ${SEL_DIR}/selenium-server.jar | ||
-O ${SEL_DIR}/selenium-server.jar \ | ||
&& echo "${SEL_PASSWD}" > ${SEL_DIR}/initialPasswd | ||
Check notice on line 120 in Base/Dockerfile GitHub Actions / Scan Dockerfile vulnerabilitiesDS014
|
||
|
||
#===== | ||
# Download observability related jaegar jars and make them available in a separate directory | ||
|
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
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
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
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
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
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