Skip to content

Commit

Permalink
Docker version upgrade to n20
Browse files Browse the repository at this point in the history
  • Loading branch information
noor1027 committed Jun 3, 2024
1 parent 83209e3 commit f879828
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions client/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:19.9-slim
FROM node:20-slim

LABEL version="1.1"
LABEL description="Demo of a Medicare claims data sample app"
Expand All @@ -11,7 +11,7 @@ COPY . .
RUN apt-get update
RUN apt-get install python3 -y
RUN apt-get install python3-pip -y

RUN node --version
RUN yarn install

EXPOSE 3000
Expand Down
4 changes: 2 additions & 2 deletions server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:19.9-slim
FROM node:20-slim

LABEL version="1.1"
LABEL description="Demo of a Medicare claims data sample app"
Expand All @@ -11,7 +11,7 @@ COPY . .
RUN apt-get update
RUN apt-get install python3 -y
RUN apt-get install python3-pip -y

RUN node --version
RUN yarn install

EXPOSE 3001
Expand Down

0 comments on commit f879828

Please sign in to comment.