File tree Expand file tree Collapse file tree 7 files changed +744
-4
lines changed Expand file tree Collapse file tree 7 files changed +744
-4
lines changed Original file line number Diff line number Diff line change 1
- FROM lsiobase/alpine:3.6
2
- MAINTAINER sparklyballs
1
+ FROM lsiobase/alpine:3.8
3
2
4
3
# set version label
5
4
ARG BUILD_DATE
6
5
ARG VERSION
7
6
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
7
+ LABEL maintainer="sparklyballs"
8
8
9
- # install packages
10
9
RUN \
10
+ echo "**** install packages ****" && \
11
11
apk add --no-cache \
12
12
curl \
13
13
jq \
20
20
unrar \
21
21
unzip
22
22
23
- # copy local files
23
+ # copy local files
24
24
COPY root/ /
25
25
26
26
# ports and volumes
Original file line number Diff line number Diff line change
1
+ FROM lsiobase/alpine.arm64:3.8
2
+
3
+ # Add qemu to build on x86_64 systems
4
+ COPY qemu-aarch64-static /usr/bin
5
+
6
+ # set version label
7
+ ARG BUILD_DATE
8
+ ARG VERSION
9
+ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
10
+ LABEL maintainer="sparklyballs"
11
+
12
+ RUN \
13
+ echo "**** install packages ****" && \
14
+ apk add --no-cache \
15
+ curl \
16
+ jq \
17
+ openssl \
18
+ p7zip \
19
+ rsync \
20
+ tar \
21
+ transmission-cli \
22
+ transmission-daemon \
23
+ unrar \
24
+ unzip
25
+
26
+ # copy local files
27
+ COPY root/ /
28
+
29
+ # ports and volumes
30
+ EXPOSE 9091 51413
31
+ VOLUME /config /downloads /watch
Original file line number Diff line number Diff line change
1
+ FROM lsiobase/alpine.armhf:3.8
2
+
3
+ # Add qemu to build on x86_64 systems
4
+ COPY qemu-arm-static /usr/bin
5
+
6
+ # set version label
7
+ ARG BUILD_DATE
8
+ ARG VERSION
9
+ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
10
+ LABEL maintainer="sparklyballs"
11
+
12
+ RUN \
13
+ echo "**** install packages ****" && \
14
+ apk add --no-cache \
15
+ curl \
16
+ jq \
17
+ openssl \
18
+ p7zip \
19
+ rsync \
20
+ tar \
21
+ transmission-cli \
22
+ transmission-daemon \
23
+ unrar \
24
+ unzip
25
+
26
+ # copy local files
27
+ COPY root/ /
28
+
29
+ # ports and volumes
30
+ EXPOSE 9091 51413
31
+ VOLUME /config /downloads /watch
You can’t perform that action at this time.
0 commit comments