install git on Dockerfile

This commit is contained in:
srgooglo 2022-10-16 21:08:41 +02:00
parent 46092068a9
commit 085272d9a9

View File

@ -1,5 +1,6 @@
FROM node:16-bullseye-slim
RUN apt install git -y
RUN mkdir -p /home/node/app/node_modules && chown -R node:node /home/node/app
WORKDIR /home/node/app