-
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create Dockerfile.armhf * Create Dockerfile.aarch64 * Create readme-vars.yml * Create Jenkinsfile * Update Dockerfile
- Loading branch information
Showing
7 changed files
with
653 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ / |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ / |
Oops, something went wrong.