Skip to content

Commit 52fbca7

Browse files
Add git-lfs cli (#1)
1 parent 9b5c502 commit 52fbca7

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

Dockerfile

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
FROM alpine:3.5
22

3-
RUN apk add --update git bash
3+
RUN apk add --no-cache git bash
4+
5+
# install git-lfs
6+
RUN apk add --no-cache --virtual deps openssl && \
7+
wget -qO- https://github.com/git-lfs/git-lfs/releases/download/v2.3.4/git-lfs-linux-amd64-2.3.4.tar.gz | tar xz && \
8+
mv git-lfs-*/git-lfs /usr/bin/ && \
9+
rm -rf git-lfs-* && \
10+
git lfs install && \
11+
apk del deps
412

513
#add ssh record on which ssh key to use
614
COPY ./.ssh/ /root/.ssh/

0 commit comments

Comments
 (0)