File tree Expand file tree Collapse file tree 7 files changed +653
-56
lines changed
Expand file tree Collapse file tree 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
33# set version label
44ARG BUILD_DATE
55ARG VERSION
6+ ARG DUCKDNS_VERSION
67LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
78LABEL maintainer="aptalca"
89
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