Skip to content

Commit

Permalink
fix: Update Dockerfile with node version which has security support a…
Browse files Browse the repository at this point in the history
…s of now (#996)



* Update Dockerfile with latest node version which has support
  • Loading branch information
AsabuHere authored Jan 24, 2024
1 parent 334bf78 commit c364e92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:14
FROM node:20

RUN mkdir /twilio
WORKDIR /twilio
Expand All @@ -10,7 +10,7 @@ COPY spec ./spec
COPY examples ./examples
COPY index.* package.json babel.config.js tsconfig.json ./

RUN npm config set unsafe-perm true # Needed to run prepublish as root.
RUN npm install --unsafe-perm true # Needed to run prepublish as root.

RUN npm install . --include=dev
RUN npm install -g .

0 comments on commit c364e92

Please sign in to comment.