Skip to content

Commit

Permalink
Merge pull request #144 from EYBlockchain/carlos-kruse/node20
Browse files Browse the repository at this point in the history
feat: update to node 20
  • Loading branch information
carlos-kruse authored Nov 22, 2023
2 parents 047b18c + 87d6ec8 commit 577673e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion merkle-tree/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16.0.0
FROM node:20

WORKDIR /app

Expand All @@ -7,6 +7,7 @@ COPY ./src ./src
COPY ./test ./test
COPY ./.babelrc ./
COPY ./config ./config
RUN npm install
RUN npm ci

EXPOSE 80
Expand Down
3 changes: 2 additions & 1 deletion merkle-tree/dev.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
FROM node:11.15
FROM node:20

WORKDIR /app

COPY ./package.json ./package-lock.json ./
RUN npm install
RUN npm ci

EXPOSE 80
Expand Down

0 comments on commit 577673e

Please sign in to comment.