This repository was archived by the owner on Apr 23, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 8 files changed +30
-21
lines changed
root/etc/s6-overlay/s6-rc.d Expand file tree Collapse file tree 8 files changed +30
-21
lines changed Original file line number Diff line number Diff line change
1
+ name : Comment on invalid interaction
2
+ on :
3
+ issues :
4
+ types :
5
+ - labeled
6
+ jobs :
7
+ add-comment-on-invalid :
8
+ if : github.event.label.name == 'invalid'
9
+ permissions :
10
+ issues : write
11
+ uses : linuxserver/github-workflows/.github/workflows/invalid-interaction-helper.yml@v1
12
+ secrets : inherit
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 \
@@ -41,15 +40,13 @@ RUN \
41
40
/tmp/pmm.tar.gz -C \
42
41
/app/pmm --strip-components=1 && \
43
42
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/ \
43
+ python3 -m ensurepip && \
44
+ pip3 install -U --no-cache-dir \
45
+ pip \
46
46
wheel && \
47
47
pip3 install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.16/ -r requirements.txt && \
48
48
pip3 cache purge && \
49
49
echo "**** cleanup ****" && \
50
- ln -s \
51
- /usr/bin/python3 \
52
- /usr/bin/python && \
53
50
apk del --purge \
54
51
build-dependencies && \
55
52
rm -rf \
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 \
@@ -41,15 +40,13 @@ RUN \
41
40
/tmp/pmm.tar.gz -C \
42
41
/app/pmm --strip-components=1 && \
43
42
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/ \
43
+ python3 -m ensurepip && \
44
+ pip3 install -U --no-cache-dir \
45
+ pip \
46
46
wheel && \
47
47
pip3 install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.16/ -r requirements.txt && \
48
48
pip3 cache purge && \
49
49
echo "**** cleanup ****" && \
50
- ln -s \
51
- /usr/bin/python3 \
52
- /usr/bin/python && \
53
50
apk del --purge \
54
51
build-dependencies && \
55
52
rm -rf \
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 \
@@ -41,15 +40,13 @@ RUN \
41
40
/tmp/pmm.tar.gz -C \
42
41
/app/pmm --strip-components=1 && \
43
42
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/ \
43
+ python3 -m ensurepip && \
44
+ pip3 install -U --no-cache-dir \
45
+ pip \
46
46
wheel && \
47
47
pip3 install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.16/ -r requirements.txt && \
48
48
pip3 cache purge && \
49
49
echo "**** cleanup ****" && \
50
- ln -s \
51
- /usr/bin/python3 \
52
- /usr/bin/python && \
53
50
apk del --purge \
54
51
build-dependencies && \
55
52
rm -rf \
Original file line number Diff line number Diff line change @@ -247,6 +247,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
247
247
248
248
## Versions
249
249
250
+ * ** 11.12.22:** - Rebase develop to Alpine 3.17.
250
251
* ** 08.11.22:** - Add develop branch.
251
252
* ** 25.10.22:** - Support commandline args and relative paths.
252
253
* ** 03.10.22:** - Rebase to Alpine 3.16, migrate to s6v3.
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 develop 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