Skip to content

Commit 2b12025

Browse files
authored
Docker version upgrade to n20 (#54)
1 parent 83209e3 commit 2b12025

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

client/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:19.9-slim
1+
FROM node:20-slim
22

33
LABEL version="1.1"
44
LABEL description="Demo of a Medicare claims data sample app"
@@ -11,7 +11,7 @@ COPY . .
1111
RUN apt-get update
1212
RUN apt-get install python3 -y
1313
RUN apt-get install python3-pip -y
14-
14+
RUN node --version
1515
RUN yarn install
1616

1717
EXPOSE 3000

server/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:19.9-slim
1+
FROM node:20-slim
22

33
LABEL version="1.1"
44
LABEL description="Demo of a Medicare claims data sample app"
@@ -11,7 +11,7 @@ COPY . .
1111
RUN apt-get update
1212
RUN apt-get install python3 -y
1313
RUN apt-get install python3-pip -y
14-
14+
RUN node --version
1515
RUN yarn install
1616

1717
EXPOSE 3001

0 commit comments

Comments
 (0)