This repository was archived by the owner on Apr 23, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +23
-21
lines changed
root/etc/s6-overlay/s6-rc.d Expand file tree Collapse file tree 6 files changed +23
-21
lines changed Original file line number Diff line number Diff line change 1
- FROM ghcr.io/linuxserver/baseimage-alpine:3.16
1
+ FROM ghcr.io/linuxserver/baseimage-alpine:3.17
2
2
3
3
# set version label
4
4
ARG BUILD_DATE
18
18
build-base \
19
19
gcc \
20
20
g++ \
21
- jq \
22
21
libffi-dev \
23
22
libxml2-dev \
24
23
libzen-dev \
27
26
grep \
28
27
libjpeg \
29
28
libxslt \
30
- python3 \
31
- py3-pip && \
29
+ python3 && \
32
30
if [ -z ${PMM_VERSION+x} ]; then \
33
31
PMM_VERSION=$(curl -s https://api.github.com/repos/meisnate12/Plex-Meta-Manager/releases \
34
32
| jq -r 'first(.[]) | .tag_name' ); \
@@ -41,10 +39,11 @@ RUN \
41
39
/tmp/pmm.tar.gz -C \
42
40
/app/pmm --strip-components=1 && \
43
41
cd /app/pmm && \
44
- python3 -m pip install --upgrade pip && \
45
- pip3 install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.16/ \
42
+ python3 -m ensurepip && \
43
+ pip3 install -U --no-cache-dir \
44
+ pip \
46
45
wheel && \
47
- pip3 install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.16 / -r requirements.txt && \
46
+ pip3 install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.17 / -r requirements.txt && \
48
47
pip3 cache purge && \
49
48
echo "**** cleanup ****" && \
50
49
ln -s \
Original file line number Diff line number Diff line change 1
- FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.16
1
+ FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.17
2
2
3
3
# set version label
4
4
ARG BUILD_DATE
18
18
build-base \
19
19
gcc \
20
20
g++ \
21
- jq \
22
21
libffi-dev \
23
22
libxml2-dev \
24
23
libzen-dev \
27
26
grep \
28
27
libjpeg \
29
28
libxslt \
30
- python3 \
31
- py3-pip && \
29
+ python3 && \
32
30
if [ -z ${PMM_VERSION+x} ]; then \
33
31
PMM_VERSION=$(curl -s https://api.github.com/repos/meisnate12/Plex-Meta-Manager/releases \
34
32
| jq -r 'first(.[]) | .tag_name'); \
@@ -41,10 +39,11 @@ RUN \
41
39
/tmp/pmm.tar.gz -C \
42
40
/app/pmm --strip-components=1 && \
43
41
cd /app/pmm && \
44
- python3 -m pip install --upgrade pip && \
45
- pip3 install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.16/ \
42
+ python3 -m ensurepip && \
43
+ pip3 install -U --no-cache-dir \
44
+ pip \
46
45
wheel && \
47
- pip3 install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.16 / -r requirements.txt && \
46
+ pip3 install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.17 / -r requirements.txt && \
48
47
pip3 cache purge && \
49
48
echo "**** cleanup ****" && \
50
49
ln -s \
Original file line number Diff line number Diff line change 1
- FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.16
1
+ FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.17
2
2
3
3
# set version label
4
4
ARG BUILD_DATE
18
18
build-base \
19
19
gcc \
20
20
g++ \
21
- jq \
22
21
libffi-dev \
23
22
libxml2-dev \
24
23
libzen-dev \
27
26
grep \
28
27
libjpeg \
29
28
libxslt \
30
- python3 \
31
- py3-pip && \
29
+ python3 && \
32
30
if [ -z ${PMM_VERSION+x} ]; then \
33
31
PMM_VERSION=$(curl -s https://api.github.com/repos/meisnate12/Plex-Meta-Manager/releases \
34
32
| jq -r 'first(.[]) | .tag_name'); \
@@ -41,10 +39,11 @@ RUN \
41
39
/tmp/pmm.tar.gz -C \
42
40
/app/pmm --strip-components=1 && \
43
41
cd /app/pmm && \
44
- python3 -m pip install --upgrade pip && \
45
- pip3 install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.16/ \
42
+ python3 -m ensurepip && \
43
+ pip3 install -U --no-cache-dir \
44
+ pip \
46
45
wheel && \
47
- pip3 install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.16 / -r requirements.txt && \
46
+ pip3 install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.17 / -r requirements.txt && \
48
47
pip3 cache purge && \
49
48
echo "**** cleanup ****" && \
50
49
ln -s \
Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ app_setup_block: |
61
61
62
62
# changelog
63
63
changelogs :
64
+ - { date: "11.12.22:", desc: "Rebase master to Alpine 3.17." }
64
65
- { date: "08.11.22:", desc: "Add develop branch." }
65
66
- { date: "25.10.22:", desc: "Support commandline args and relative paths." }
66
67
- { date: "03.10.22:", desc: "Rebase to Alpine 3.16, migrate to s6v3." }
Original file line number Diff line number Diff line change 2
2
3
3
IFS="|" read -r -a CLI_OPTIONS <<< "$CLI_OPTIONS_STRING"
4
4
5
+ export PMM_LINUXSERVER=True
6
+
5
7
cd / || exit 1
6
8
7
9
# halt startup if no config file is found
Original file line number Diff line number Diff line change 2
2
3
3
IFS="|" read -r -a CLI_OPTIONS <<< "$CLI_OPTIONS_STRING"
4
4
5
+ export PMM_LINUXSERVER=True
6
+
5
7
cd / || exit 1
6
8
7
9
# halt startup if no config file is found
You can’t perform that action at this time.
0 commit comments