Skip to content

Commit 3c2b752

Browse files
Add Dockerfile for ARM
1 parent 52fbca7 commit 3c2b752

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

Dockerfile.aarch64

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)