Skip to content

Commit f1d6951

Browse files
Update Dockerfile.n8n to specify git version for compatibility
- Changed the git installation in the Dockerfile to a specific version (2.43.0-r0) to ensure compatibility with the backup script. - This update enhances the stability of the n8n environment by preventing potential issues with newer git versions.
1 parent 558714a commit f1d6951

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile.n8n

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ARG SLACKIFY_MARKDOWN_VERSION=^4.5.0
99
# Install git for backup script and other packages + install external packages in one layer
1010
USER root
1111
RUN set -eux; \
12-
apk add --no-cache git && \
12+
apk add --no-cache git=2.43.0-r0 && \
1313
npm install -g --no-audit --no-fund --ignore-scripts \
1414
--legacy-peer-deps --no-workspaces \
1515
--unsafe-perm \

0 commit comments

Comments
 (0)