1
Fork 0
mirror of https://github.com/allthingslinux/tux.git synced 2024-10-02 16:43:12 +00:00

feat(Dockerfile): add nodejs and npm to Dockerfile to support Node.js based applications

This commit is contained in:
kzndotsh 2024-08-06 15:49:26 +00:00
parent e6a7269a09
commit b9937825b9

View file

@ -13,6 +13,8 @@ RUN apt-get update && \
shared-mime-info \
curl \
build-essential && \
nodejs && \
npm && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*