File tree 7 files changed +653
-56
lines changed
7 files changed +653
-56
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ FROM lsiobase/alpine:3.8
3
3
# set version label
4
4
ARG BUILD_DATE
5
5
ARG VERSION
6
+ ARG DUCKDNS_VERSION
6
7
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
7
8
LABEL maintainer="aptalca"
8
9
Original file line number Diff line number Diff line change
1
+ FROM lsiobase/alpine.arm64:3.8
2
+
3
+ # Add qemu to run on x86_64 systems
4
+ COPY qemu-aarch64-static /usr/bin
5
+
6
+ # set version label
7
+ ARG BUILD_DATE
8
+ ARG VERSION
9
+ ARG DUCKDNS_VERSION
10
+ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
11
+ LABEL maintainer="aptalca"
12
+
13
+ # environment settings
14
+ ENV S6_BEHAVIOUR_IF_STAGE2_FAILS=2
15
+
16
+ RUN \
17
+ echo "**** install packages ****" && \
18
+ apk add --no-cache \
19
+ curl
20
+
21
+ # add local files
22
+ COPY root/ /
Original file line number Diff line number Diff line change
1
+ FROM lsiobase/alpine.armhf:3.8
2
+
3
+ # Add qemu to run on x86_64 systems
4
+ COPY qemu-arm-static /usr/bin
5
+
6
+ # set version label
7
+ ARG BUILD_DATE
8
+ ARG VERSION
9
+ ARG DUCKDNS_VERSION
10
+ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
11
+ LABEL maintainer="aptalca"
12
+
13
+ # environment settings
14
+ ENV S6_BEHAVIOUR_IF_STAGE2_FAILS=2
15
+
16
+ RUN \
17
+ echo "**** install packages ****" && \
18
+ apk add --no-cache \
19
+ curl
20
+
21
+ # add local files
22
+ COPY root/ /
You can’t perform that action at this time.
0 commit comments