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
3 changes: 3 additions & 0 deletions client/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ WORKDIR /client

COPY . .

RUN apt-get update && \
apt-get install -y libgnutls30 libcap2

# In case machine is Mac M1 chip
RUN node --version
RUN yarn install
Expand Down
4 changes: 2 additions & 2 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "7.12.0",
"react-router-dom": "^7.18.0",
"sass": "1.72.0",
"typescript": "^4.8.4",
"vite-plugin-svgr": "^4.3.0",
Expand Down Expand Up @@ -56,7 +56,7 @@
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"@vitest/coverage-v8": "2.1.6",
"@vitest/coverage-v8": "^3.2.6",
"eslint": "^9.37.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react": "^7.37.5",
Expand Down
6 changes: 3 additions & 3 deletions server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-slim
FROM node:22.22.2-trixie-slim

LABEL version="1.1"
LABEL description="Demo of a Medicare claims data sample app"
Expand All @@ -7,8 +7,8 @@ WORKDIR /server

COPY . .

RUN apt-get update \
&& apt-get install -y libgnutls30=3.7.9-2+deb12u7
RUN apt-get update && \

@ryan-morosa ryan-morosa Jun 24, 2026

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think you need to update libcap2 in this one too - it looks like an old version still when I go into the container and run dpkg -l | grep libcap2 I get 1:2.66-4+deb12u2+b2

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can probably huddle briefly tomorrow but I'm still getting 1:2.66-4+deb12u2+b2 in the server container for libcap2

apt-get install -y libgnutls30 libcap2

# In case machine is Mac M1 chip
RUN node --version
Expand Down
Loading