This repository has been archived by the owner on May 31, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from linuxserver/pipeline
Pipeline
- Loading branch information
Showing
7 changed files
with
803 additions
and
3 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,30 @@ | ||
FROM lsiobase/alpine.python.arm64:3.8 | ||
|
||
# Add qemu to build on x86_64 systems | ||
COPY qemu-aarch64-static /usr/bin | ||
|
||
# set version label | ||
ARG BUILD_DATE | ||
ARG VERSION | ||
ARG SICKRAGE_COMMIT | ||
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" | ||
LABEL maintainer="sparklyballs" | ||
|
||
# set python to use utf-8 rather than ascii | ||
ENV PYTHONIOENCODING="UTF-8" | ||
|
||
RUN \ | ||
echo "**** install packages ****" && \ | ||
apk add --no-cache \ | ||
--repository http://nl.alpinelinux.org/alpine/edge/main \ | ||
nodejs && \ | ||
echo "**** install app ****" && \ | ||
git clone --depth=1 https://github.com/SickChill/SickChill.git /app/sickrage | ||
|
||
|
||
# copy local files | ||
COPY root/ / | ||
|
||
# ports and volumes | ||
EXPOSE 8081 | ||
VOLUME /config /downloads /tv |
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,29 @@ | ||
FROM lsiobase/alpine.python.armhf:3.8 | ||
|
||
# Add qemu to build on x86_64 systems | ||
COPY qemu-arm-static /usr/bin | ||
|
||
# set version label | ||
ARG BUILD_DATE | ||
ARG VERSION | ||
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" | ||
LABEL maintainer="sparklyballs" | ||
|
||
# set python to use utf-8 rather than ascii | ||
ENV PYTHONIOENCODING="UTF-8" | ||
|
||
RUN \ | ||
echo "**** install packages ****" && \ | ||
apk add --no-cache \ | ||
--repository http://nl.alpinelinux.org/alpine/edge/main \ | ||
nodejs && \ | ||
echo "**** install app ****" && \ | ||
git clone --depth=1 https://github.com/SickChill/SickChill.git /app/sickrage | ||
|
||
|
||
# copy local files | ||
COPY root/ / | ||
|
||
# ports and volumes | ||
EXPOSE 8081 | ||
VOLUME /config /downloads /tv |
Oops, something went wrong.