Skip to content

Commit 50344f0

Browse files
authored
upgraded git-lfs to 3.6.1 in Dockerfile (#386)
Signed-off-by: reggie-k <[email protected]>
1 parent 21c7288 commit 50344f0

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Dockerfile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,18 @@ USER root
4343
ENV ARGOCD_USER_ID=999
4444
ENV DEBIAN_FRONTEND=noninteractive
4545

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 && \
4751
useradd -r -u $ARGOCD_USER_ID -g argocd argocd && \
4852
mkdir -p /home/argocd && \
4953
chown argocd:0 /home/argocd && \
5054
chmod g=u /home/argocd && \
51-
apt-get update && \
5255
apt-get dist-upgrade -y && \
5356
apt-get install -y \
54-
git git-lfs tini gpg tzdata connect-proxy && \
57+
git tini gpg tzdata connect-proxy && \
5558
apt-get clean && \
5659
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
5760

changelog/CHANGELOG.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
11
### Features
2-
- fix(ci): removed null security context from redis-ha values.yaml to placate helm 3.17.1
3-
- feat: bumped helm to 3.17.1
4-
- feat: bumped golang-jwt/jwt/v4 to 4.5.1
5-
- feat: bumped GitHub actions/cache to 4.2.0
2+
- feat: upgraded git-lfs to 3.6.1

0 commit comments

Comments
 (0)