We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b5c502 commit 52fbca7Copy full SHA for 52fbca7
Dockerfile
@@ -1,6 +1,14 @@
1
FROM alpine:3.5
2
3
-RUN apk add --update git bash
+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
12
13
#add ssh record on which ssh key to use
14
COPY ./.ssh/ /root/.ssh/
0 commit comments