mytube-frontend/docker/npm/dockerfile
2024-02-23 14:07:10 +01:00

12 lines
152 B
Plaintext

FROM node:20-slim
WORKDIR /var/www/html
# confirm installation
RUN node -v
RUN npm -v
# use newest npm version
RUN npm install npm
CMD ["/bin/bash"]