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 52fbca7 commit 3c2b752Copy full SHA for 3c2b752
Dockerfile.aarch64
@@ -0,0 +1,18 @@
1
+FROM multiarch/alpine:aarch64-v3.5
2
+RUN apk add --no-cache git bash
3
+
4
+# install git-lfs
5
+RUN apk add --no-cache --virtual deps openssl && \
6
+ 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 && \
7
+ mv git-lfs-*/git-lfs /usr/bin/ && \
8
+ rm -rf git-lfs-* && \
9
+ git lfs install && \
10
+ apk del deps
11
12
+#add ssh record on which ssh key to use
13
+COPY ./.ssh/ /root/.ssh/
14
15
+COPY ./start.sh /run/start.sh
16
+RUN chmod +x /run/start.sh
17
18
+CMD ["/run/start.sh"]
0 commit comments