Skip to content

Commit

Permalink
Merge pull request #39 from EYBlockchain/carlos-kruse/node20
Browse files Browse the repository at this point in the history
feat: update to nodejs 20
  • Loading branch information
carlos-kruse authored Nov 22, 2023
2 parents a5d6403 + 2829390 commit d164e5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ ARG GPR_TOKEN

FROM zokrates/zokrates:0.8.0 as builder

FROM node:16.0.0 as node-build
FROM node:20 as node-build
ARG GPR_TOKEN
WORKDIR /app
COPY ./package.json ./package-lock.json ./.npmrc ./
RUN npm ci
RUN rm -f .npmrc

FROM node:16.0.0
FROM node:20
WORKDIR /app

COPY --from=node-build /app /app
Expand All @@ -23,7 +23,7 @@ COPY ./start-script ./start-script
COPY ./start-dev ./start-dev

RUN apt-get update -y
RUN apt-get install -y netcat
RUN apt-get install -y netcat-traditional
RUN apt-get install vim -y
# RUN apt-get install libc6

Expand Down

0 comments on commit d164e5a

Please sign in to comment.