Commit 34a3885 1 parent fd732f4 commit 34a3885 Copy full SHA for 34a3885
File tree 1 file changed +8
-3
lines changed
1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -17,14 +17,19 @@ RUN addgroup atlantis && \
17
17
chmod g=u /home/atlantis/ && \
18
18
chmod g=u /etc/passwd
19
19
20
- # Install dumb-init and gosu .
20
+ # Install dumb-init, gosu and git-lfs .
21
21
ENV DUMB_INIT_VERSION=1.2.5
22
- ENV GOSU_VERSION=1.12
23
- RUN apk add --no-cache ca-certificates gnupg curl git git-lfs unzip bash openssh libcap openssl && \
22
+ ENV GOSU_VERSION=1.14
23
+ ENV GIT_LFS_VERSION=3.1.2
24
+ RUN apk add --no-cache ca-certificates gnupg curl git unzip bash openssh libcap openssl && \
24
25
curl -L -s --output /bin/dumb-init "https://github.com/Yelp/dumb-init/releases/download/v${DUMB_INIT_VERSION}/dumb-init_${DUMB_INIT_VERSION}_x86_64" && \
25
26
chmod +x /bin/dumb-init && \
26
27
mkdir -p /tmp/build && \
27
28
cd /tmp/build && \
29
+ curl -L -s --output git-lfs.tar.gz "https://github.com/git-lfs/git-lfs/releases/download/v${GIT_LFS_VERSION}/git-lfs-linux-amd64-v${GIT_LFS_VERSION}.tar.gz" && \
30
+ tar -xf git-lfs.tar.gz && \
31
+ chmod +x git-lfs && \
32
+ mv git-lfs /usr/bin/git-lfs && \
28
33
curl -L -s --output gosu "https://github.com/tianon/gosu/releases/download/${GOSU_VERSION}/gosu-amd64" && \
29
34
curl -L -s --output gosu.asc "https://github.com/tianon/gosu/releases/download/${GOSU_VERSION}/gosu-amd64.asc" && \
30
35
for server in $(shuf -e ipv4.pool.sks-keyservers.net \
You can’t perform that action at this time.
0 commit comments