File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -43,15 +43,19 @@ USER root
43
43
ENV ARGOCD_USER_ID=999
44
44
ENV DEBIAN_FRONTEND=noninteractive
45
45
46
- RUN groupadd -g $ARGOCD_USER_ID argocd && \
46
+ RUN apt-get update && \
47
+ apt-get install curl -y && \
48
+ curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash && \
49
+ apt-get install git-lfs -y && \
50
+ groupadd -g $ARGOCD_USER_ID argocd && \
47
51
useradd -r -u $ARGOCD_USER_ID -g argocd argocd && \
48
52
mkdir -p /home/argocd && \
49
53
chown argocd:0 /home/argocd && \
50
54
chmod g=u /home/argocd && \
51
55
apt-get update && \
52
56
apt-get dist-upgrade -y && \
53
57
apt-get install -y \
54
- git git-lfs tini gpg tzdata connect-proxy && \
58
+ git tini gpg tzdata connect-proxy && \
55
59
apt-get clean && \
56
60
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
57
61
You can’t perform that action at this time.
0 commit comments