12 lines
151 B
Plaintext
12 lines
151 B
Plaintext
FROM node:latest
|
|
|
|
WORKDIR /var/www/html
|
|
|
|
# confirm installation
|
|
RUN node -v
|
|
RUN npm -v
|
|
|
|
# use newest npm version
|
|
RUN npm install npm
|
|
|
|
CMD ["/bin/bash"] |