From ab50c7be0bf8a8bc791e61266f31a9a7cba1539f Mon Sep 17 00:00:00 2001 From: Boming Zhang Date: Sun, 20 Oct 2024 16:15:40 -0400 Subject: [PATCH] feat: install git-lfs in image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 21c3280..d16b72f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ENV TZ="Asia/Shanghai" RUN sed -i s@/deb.debian.org/@/mirrors.tuna.tsinghua.edu.cn/@g /etc/apt/sources.list.d/debian.sources && \ apt-get update && \ - apt-get install -y --no-install-recommends sudo python3-minimal python3-pip git openssh-client && \ + apt-get install -y --no-install-recommends sudo python3-minimal python3-pip git git-lfs openssh-client && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* && \ userdel -r node && \