Docker: Add git-lfs package to image

This commit is contained in:
Cohee
2025-05-17 16:32:42 +03:00
parent 9438b5c4aa
commit b093f71ae0

View File

@ -4,7 +4,7 @@ FROM node:lts-alpine3.19
ARG APP_HOME=/home/node/app
# Install system dependencies
RUN apk add --no-cache gcompat tini git
RUN apk add --no-cache gcompat tini git git-lfs
# Create app directory
WORKDIR ${APP_HOME}