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 +36
-21
lines changed
root/etc/s6-overlay/s6-rc.d Expand file tree Collapse file tree 8 files changed +36
-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+ # syntax=docker/dockerfile:1
2+
3+ FROM ghcr.io/linuxserver/baseimage-alpine:3.17
24
35# set version label
46ARG BUILD_DATE
1820 build-base \
1921 gcc \
2022 g++ \
21- jq \
2223 libffi-dev \
2324 libxml2-dev \
2425 libzen-dev \
@@ -41,15 +42,13 @@ RUN \
4142 /tmp/pmm.tar.gz -C \
4243 /app/pmm --strip-components=1 && \
4344 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/ \
45+ python3 -m ensurepip && \
46+ pip3 install -U --no-cache-dir \
47+ pip \
4648 wheel && \
4749 pip3 install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.16/ -r requirements.txt && \
4850 pip3 cache purge && \
4951 echo "**** cleanup ****" && \
50- ln -s \
51- /usr/bin/python3 \
52- /usr/bin/python && \
5352 apk del --purge \
5453 build-dependencies && \
5554 rm -rf \
Original file line number Diff line number Diff line change 1- FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.16
1+ # syntax=docker/dockerfile:1
2+
3+ FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.17
24
35# set version label
46ARG BUILD_DATE
1820 build-base \
1921 gcc \
2022 g++ \
21- jq \
2223 libffi-dev \
2324 libxml2-dev \
2425 libzen-dev \
@@ -41,15 +42,13 @@ RUN \
4142 /tmp/pmm.tar.gz -C \
4243 /app/pmm --strip-components=1 && \
4344 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/ \
45+ python3 -m ensurepip && \
46+ pip3 install -U --no-cache-dir \
47+ pip \
4648 wheel && \
4749 pip3 install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.16/ -r requirements.txt && \
4850 pip3 cache purge && \
4951 echo "**** cleanup ****" && \
50- ln -s \
51- /usr/bin/python3 \
52- /usr/bin/python && \
5352 apk del --purge \
5453 build-dependencies && \
5554 rm -rf \
Original file line number Diff line number Diff line change 1- FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.16
1+ # syntax=docker/dockerfile:1
2+
3+ FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.17
24
35# set version label
46ARG BUILD_DATE
1820 build-base \
1921 gcc \
2022 g++ \
21- jq \
2223 libffi-dev \
2324 libxml2-dev \
2425 libzen-dev \
@@ -41,15 +42,13 @@ RUN \
4142 /tmp/pmm.tar.gz -C \
4243 /app/pmm --strip-components=1 && \
4344 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/ \
45+ python3 -m ensurepip && \
46+ pip3 install -U --no-cache-dir \
47+ pip \
4648 wheel && \
4749 pip3 install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.16/ -r requirements.txt && \
4850 pip3 cache purge && \
4951 echo "**** cleanup ****" && \
50- ln -s \
51- /usr/bin/python3 \
52- /usr/bin/python && \
5352 apk del --purge \
5453 build-dependencies && \
5554 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
247247
248248## Versions
249249
250+ * ** 11.12.22:** - Rebase develop to Alpine 3.17.
250251* ** 08.11.22:** - Add develop branch.
251252* ** 25.10.22:** - Support commandline args and relative paths.
252253* ** 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: |
6161
6262# changelog
6363changelogs :
64+ - { date: "11.12.22:", desc: "Rebase develop to Alpine 3.17." }
6465 - { date: "08.11.22:", desc: "Add develop branch." }
6566 - { date: "25.10.22:", desc: "Support commandline args and relative paths." }
6667 - { date: "03.10.22:", desc: "Rebase to Alpine 3.16, migrate to s6v3." }
Original file line number Diff line number Diff line change 22
33IFS="|" read -r -a CLI_OPTIONS <<< "$CLI_OPTIONS_STRING"
44
5+ export PMM_LINUXSERVER=True
6+
57cd / || exit 1
68
79# halt startup if no config file is found
Original file line number Diff line number Diff line change 22
33IFS="|" read -r -a CLI_OPTIONS <<< "$CLI_OPTIONS_STRING"
44
5+ export PMM_LINUXSERVER=True
6+
57cd / || exit 1
68
79# halt startup if no config file is found
You can’t perform that action at this time.
0 commit comments