This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
bee-frontend-ARCHIVED/docker/npm/dockerfile
2024-08-24 22:27:08 +00: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"]