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
9 changes: 4 additions & 5 deletions pass-nihms-loader/nihms-token-refresh/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
FROM --platform=linux/amd64 node:20

ENV CHROME_VERSION=141.0.7390.122-1
FROM --platform=linux/amd64 node:24

RUN apt-get update \
&& apt-get --no-install-recommends install -y xauth \
&& apt-get --no-install-recommends install -y xvfb \
&& curl -O https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_VERSION}_amd64.deb \
&& curl https://dl-ssl.google.com/linux/linux_signing_key.pub -so - | apt-key add - \
&& echo "deb https://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list \
&& apt-get update \
&& apt-get install -y ./google-chrome-stable_${CHROME_VERSION}_amd64.deb \
&& apt-get --no-install-recommends -y install google-chrome-stable \
&& curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -so "awscliv2.zip" \
&& unzip awscliv2.zip \
&& ./aws/install \
Expand Down
4 changes: 2 additions & 2 deletions pass-nihms-loader/nihms-token-refresh/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
"refresh-token": "./run_refresh.sh"
},
"dependencies": {
"testcafe": "3.3.0"
"testcafe": "3.7.4"
},
"engines": {
"node": ">=20"
"node": ">=24"
}
}