Skip to content

Commit

Permalink
Merge pull request #7 from linuxserver-labs/3.18
Browse files Browse the repository at this point in the history
rebase to 3.18, deprecate armhf
  • Loading branch information
aptalca authored May 16, 2023
2 parents a905a5d + dc3eb8f commit 4ec8cc3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/call-baseimage-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
with:
repo_owner: ${{ github.repository_owner }}
baseimage: "alpine"
basebranch: "3.15"
basebranch: "3.18"
app_name: "plextraktsync"
secrets:
repo_release_token: ${{ secrets.repo_release_token }}
2 changes: 1 addition & 1 deletion .github/workflows/call-build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
repo_owner: ${{ github.repository_owner }}
app_name: "plextraktsync"
release_type: "script"
target-arch: "all"
target-arch: "64"
secrets:
scarf_token: ${{ secrets.SCARF_TOKEN }}
3 changes: 2 additions & 1 deletion .github/workflows/permissions.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: Permission check
on:
pull_request:
pull_request_target:
paths:
- '**/run'
- '**/finish'
- '**/check'
jobs:
permission_check:
uses: linuxserver/github-workflows/.github/workflows/init-svc-executable-permissions.yml@v1
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/linuxserver/baseimage-alpine:3.17
FROM ghcr.io/linuxserver/baseimage-alpine:3.18

ARG BUILD_DATE
ARG VERSION
Expand All @@ -21,11 +21,11 @@ RUN \
if [ -z "${APP_VERSION}" ]; then \
APP_VERSION=$(curl -sL "https://pypi.python.org/pypi/PlexTraktSync/json" | jq -r '. | .info.version'); \
fi && \
python3 -m ensurepip && \
pip3 install -U --no-cache-dir \
python3 -m venv /lsiopy && \
pip install -U --no-cache-dir \
pip \
wheel && \
pip3 install --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.17/ \
pip install --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.18/ \
PlexTraktSync==${APP_VERSION} && \
echo "**** clean up ****" && \
rm -rf \
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,5 +217,6 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64

## Versions

* **16.05.23:** - Rebase to alpine 3.18, deprecate arm32v7 (armhf) per [this notice](https://info.linuxserver.io/issues/2023-05-06-armhf/).
* **24.07.22:** - Check for `config.yml` instead of the deprecated `config.json`.
* **30.03.22:** - Initial Release.

0 comments on commit 4ec8cc3

Please sign in to comment.