We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72ea746 commit 062008dCopy full SHA for 062008d
1 file changed
integrations/node.Dockerfile
@@ -1,4 +1,4 @@
1
-FROM node:14-alpine
+FROM node:18-alpine
2
3
COPY integrations/https-cert/rootCA.pem /root/integration-test.pem
4
@@ -14,12 +14,9 @@ ADD package.json /src/
14
15
# https://www.npmjs.com/package/axios
16
# https://www.npmjs.com/package/request
17
-RUN npm install axios request
18
-
19
# Installing node-fetch@2 because as of 3.0 is't now an ESM-only package.
20
# https://www.npmjs.com/package/node-fetch
21
-RUN npm install node-fetch@2
22
23
-RUN npm install
+RUN npm install axios request node-fetch@2 && \
+ npm install
24
25
ADD . /src
0 commit comments