mytube-frontend/docker/npm/dockerfile
2024-02-14 20:59:56 +01:00

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"]