Skip to content

Commit

Permalink
Rebase master to 3.17
Browse files Browse the repository at this point in the history
  • Loading branch information
thespad committed Mar 5, 2023
1 parent 1b4a421 commit 39f728f
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 13 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
FROM ghcr.io/linuxserver/baseimage-alpine:3.16
# syntax=docker/dockerfile:1

FROM ghcr.io/linuxserver/baseimage-alpine:3.17

# set version label
ARG UNRAR_VERSION=6.1.7
Expand All @@ -14,9 +16,7 @@ ENV PYTHONIOENCODING="UTF-8"
RUN \
echo "**** install build packages ****" && \
apk add --no-cache --upgrade --virtual=build-dependencies \
make \
g++ \
gcc && \
build-base && \
echo "**** install packages ****" && \
apk add --no-cache \
py3-cheetah \
Expand Down
9 changes: 4 additions & 5 deletions Dockerfile.aarch64
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.16
# syntax=docker/dockerfile:1

FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.17

# set version label
ARG UNRAR_VERSION=6.1.7
Expand All @@ -11,13 +13,10 @@ LABEL maintainer="xe, homerr"
# set python to use utf-8 rather than ascii.
ENV PYTHONIOENCODING="UTF-8"


RUN \
echo "**** install build packages ****" && \
apk add --no-cache --upgrade --virtual=build-dependencies \
make \
g++ \
gcc && \
build-base && \
echo "**** install packages ****" && \
apk add --no-cache \
py3-cheetah \
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile.armhf
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.16
# syntax=docker/dockerfile:1

FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.17

# set version label
ARG UNRAR_VERSION=6.1.7
Expand All @@ -14,9 +16,7 @@ ENV PYTHONIOENCODING="UTF-8"
RUN \
echo "**** install build packages ****" && \
apk add --no-cache --upgrade --virtual=build-dependencies \
make \
g++ \
gcc && \
build-base && \
echo "**** install packages ****" && \
apk add --no-cache \
py3-cheetah \
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64

## Versions

* **05.03.23:** - Rebase to Alpine 3.17.
* **18.11.22:** - Update service file from legacy SickBeard.py to sickgear.py.
* **10.10.22:** - Rebase to Alpine 3.16, migrate to s6v3.
* **19.09.22:** - Rebase to alpine 3.15. Build unrar from source.
Expand Down
1 change: 1 addition & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ app_setup_block: |
# changelog
changelogs:
- { date: "05.03.23:", desc: "Rebase to Alpine 3.17." }
- { date: "18.11.22:", desc: "Update service file from legacy SickBeard.py to sickgear.py." }
- { date: "10.10.22:", desc: "Rebase to Alpine 3.16, migrate to s6v3." }
- { date: "19.09.22:", desc: "Rebase to alpine 3.15. Build unrar from source." }
Expand Down
1 change: 1 addition & 0 deletions root/etc/s6-overlay/s6-rc.d/init-sickgear-config/run
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/with-contenv bash
# shellcheck shell=bash

#make our folders and links
mkdir -p \
Expand Down
1 change: 1 addition & 0 deletions root/etc/s6-overlay/s6-rc.d/svc-sickgear/run
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/with-contenv bash
# shellcheck shell=bash

exec \
s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z localhost 8081" \
Expand Down

0 comments on commit 39f728f

Please sign in to comment.