Skip to content

Commit dd2c1f9

Browse files
aptalcathelamer
authored andcommitted
Pipeline (#10)
* Create Dockerfile.armhf * Create Dockerfile.aarch64 * Create readme-vars.yml * Create Jenkinsfile * Update Dockerfile
1 parent 0a3afa8 commit dd2c1f9

File tree

7 files changed

+653
-56
lines changed

7 files changed

+653
-56
lines changed

Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ FROM lsiobase/alpine:3.8
33
# set version label
44
ARG BUILD_DATE
55
ARG VERSION
6+
ARG DUCKDNS_VERSION
67
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
78
LABEL maintainer="aptalca"
89

Dockerfile.aarch64

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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/ /

Dockerfile.armhf

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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/ /

0 commit comments

Comments
 (0)