Skip to content

Commit 0a14457

Browse files
authored
Enable git lfs (#98)
1 parent 9e487f2 commit 0a14457

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM alpine:latest
22

3-
RUN apk add --no-cache git openssh-client
3+
RUN apk add --no-cache git git-lfs openssh-client
44

55
COPY entrypoint.sh /entrypoint.sh
66

entrypoint.sh

+3
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ CLONE_DIR=$(mktemp -d)
6060
echo "[+] Git version"
6161
git --version
6262

63+
echo "[+] Enable git lfs"
64+
git lfs install
65+
6366
echo "[+] Cloning destination git repository $DESTINATION_REPOSITORY_NAME"
6467
# Setup git
6568
git config --global user.email "$USER_EMAIL"

0 commit comments

Comments
 (0)