Skip to content
This repository has been archived by the owner on May 31, 2019. It is now read-only.

Commit

Permalink
Merge pull request #42 from linuxserver/pipeline
Browse files Browse the repository at this point in the history
Pipeline
  • Loading branch information
aptalca authored Feb 4, 2019
2 parents 256bdac + 0df75c1 commit bf9af87
Show file tree
Hide file tree
Showing 7 changed files with 803 additions and 3 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ RUN \
echo "**** install app ****" && \
git clone --depth=1 https://github.com/SickChill/SickChill.git /app/sickrage


# copy local files
COPY root/ /

Expand Down
30 changes: 30 additions & 0 deletions Dockerfile.aarch64
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
29 changes: 29 additions & 0 deletions Dockerfile.armhf
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
Loading

0 comments on commit bf9af87

Please sign in to comment.