Skip to content

Commit

Permalink
Pipeline (#10)
Browse files Browse the repository at this point in the history
* Create Dockerfile.armhf
* Create Dockerfile.aarch64
* Create readme-vars.yml
* Create Jenkinsfile
* Update Dockerfile
  • Loading branch information
aptalca authored and thelamer committed Oct 15, 2018
1 parent 0a3afa8 commit dd2c1f9
Show file tree
Hide file tree
Showing 7 changed files with 653 additions and 56 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ FROM lsiobase/alpine:3.8
# set version label
ARG BUILD_DATE
ARG VERSION
ARG DUCKDNS_VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="aptalca"

Expand Down
22 changes: 22 additions & 0 deletions Dockerfile.aarch64
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
FROM lsiobase/alpine.arm64:3.8

# Add qemu to run on x86_64 systems
COPY qemu-aarch64-static /usr/bin

# set version label
ARG BUILD_DATE
ARG VERSION
ARG DUCKDNS_VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="aptalca"

# environment settings
ENV S6_BEHAVIOUR_IF_STAGE2_FAILS=2

RUN \
echo "**** install packages ****" && \
apk add --no-cache \
curl

# add local files
COPY root/ /
22 changes: 22 additions & 0 deletions Dockerfile.armhf
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
FROM lsiobase/alpine.armhf:3.8

# Add qemu to run on x86_64 systems
COPY qemu-arm-static /usr/bin

# set version label
ARG BUILD_DATE
ARG VERSION
ARG DUCKDNS_VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="aptalca"

# environment settings
ENV S6_BEHAVIOUR_IF_STAGE2_FAILS=2

RUN \
echo "**** install packages ****" && \
apk add --no-cache \
curl

# add local files
COPY root/ /
Loading

0 comments on commit dd2c1f9

Please sign in to comment.