Add git to Dockerfile

This commit is contained in:
city-unit 2023-07-24 00:46:07 -04:00
parent b6243cdbe1
commit b2dc4c6c1b

View File

@ -4,7 +4,7 @@ FROM node:19.1.0-alpine3.16
ARG APP_HOME=/home/node/app
# Install system dependencies
RUN apk add gcompat tini
RUN apk add gcompat tini git
# Ensure proper handling of kernel signals
ENTRYPOINT [ "tini", "--" ]