Skip to content
Merged
Show file tree
Hide file tree
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: 3 additions & 3 deletions selenium/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM node:18 as base
FROM node:18 AS base

WORKDIR /code

COPY package.json package.json

FROM base as test
RUN npm install
FROM base AS test
RUN npm install --verbose

ENTRYPOINT [ "npm" ]
CMD [ "" ]
2 changes: 1 addition & 1 deletion selenium/bin/components/selenium
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# selenium/standalone-chromium is multi-arch
# https://hub.docker.com/r/selenium/standalone-chromium/tags
SELENIUM_DOCKER_IMAGE=${SELENIUM_DOCKER_IMAGE:-selenium/standalone-chromium:133.0}
SELENIUM_DOCKER_IMAGE=${SELENIUM_DOCKER_IMAGE:-selenium/standalone-chromium:141.0}

start_selenium() {
begin "Starting selenium ..."
Expand Down
24 changes: 12 additions & 12 deletions selenium/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,23 @@
"author": "",
"license": "ISC",
"dependencies": {
"chromedriver": "^139.0",
"ejs": "^3.1.8",
"express": "^4.18.2",
"geckodriver": "^3.0.2",
"chromedriver": "^141.0",
"ejs": "^3.1.10",
"express": "^5.1.0",
"geckodriver": "^6.0.2",
"http-proxy": "^1.18.1",
"mqtt": "^5.3.3",
"mqtt": "^5.14.1",
"path": "^0.12.7",
"proxy": "^1.0.2",
"rhea": "^3.0.3",
"selenium-webdriver": "^4.26.0",
"proxy": "^2.2.0",
"rhea": "^3.0.4",
"selenium-webdriver": "^4.37.0",
"xmlhttprequest": "^1.8.0",
"amqplib": "0.8.0"
"amqplib": "0.10.9"
},
"devDependencies": {
"chai": "^4.3.6",
"mocha": "^10.4.0",
"chai": "^6.2.0",
"mocha": "^11.7.4",
"request": "^2.88.2",
"standard": "^17.0.0"
"standard": "^17.1.2"
}
}