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
4 changes: 3 additions & 1 deletion client/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:24-trixie-slim
FROM node:26.7-trixie-slim

ARG BB2-APP_LAUNCH

Expand All @@ -14,6 +14,8 @@ COPY . .
RUN apt-get update && \
apt-get install -y libgnutls30 libcap2 libssh2-1

RUN npm install -g yarn

# In case machine is Mac M1 chip
RUN node --version
RUN yarn install
Expand Down
4 changes: 3 additions & 1 deletion server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:24-trixie-slim
FROM node:26.7-trixie-slim

LABEL version="1.1"
LABEL description="Demo of a Medicare claims data sample app"
Expand All @@ -10,6 +10,8 @@ COPY . .
RUN apt-get update && \
apt-get install -y libgnutls30 libcap2 libssh2-1

RUN npm install -g yarn

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