Skip to content

Commit e159264

Browse files
authored
Merge pull request #4 from linuxserver/alpine319-initial
fix sed, switch branch to alpine319
2 parents c5912cc + 8334ece commit e159264

12 files changed

+150
-109
lines changed

.github/CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
## Readme
2525

2626
If you would like to change our readme, please __**do not**__ directly edit the readme, as it is auto-generated on each commit.
27-
Instead edit the [readme-vars.yml](https://github.com/linuxserver/docker-python/edit/main/readme-vars.yml).
27+
Instead edit the [readme-vars.yml](https://github.com/linuxserver/docker-python/edit/alpine319/readme-vars.yml).
2828

2929
These variables are used in a template for our [Jenkins Builder](https://github.com/linuxserver/docker-jenkins-builder) as part of an ansible play.
3030
Most of these variables are also carried over to [docs.linuxserver.io](https://docs.linuxserver.io)
@@ -115,7 +115,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
115115

116116
## Update the changelog
117117

118-
If you are modifying the Dockerfiles or any of the startup scripts in [root](https://github.com/linuxserver/docker-python/tree/main/root), add an entry to the changelog
118+
If you are modifying the Dockerfiles or any of the startup scripts in [root](https://github.com/linuxserver/docker-python/tree/alpine319/root), add an entry to the changelog
119119

120120
```yml
121121
changelogs:

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
------------------------------
2323

24-
- [ ] I have read the [contributing](https://github.com/linuxserver/docker-python/blob/main/.github/CONTRIBUTING.md) guideline and understand that I have made the correct modifications
24+
- [ ] I have read the [contributing](https://github.com/linuxserver/docker-python/blob/alpine319/.github/CONTRIBUTING.md) guideline and understand that I have made the correct modifications
2525

2626
------------------------------
2727

.github/workflows/external_trigger.yml

Lines changed: 28 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -4,36 +4,38 @@ on:
44
workflow_dispatch:
55

66
jobs:
7-
external-trigger-main:
7+
external-trigger-alpine319:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v4.1.1
1111

1212
- name: External Trigger
13-
if: github.ref == 'refs/heads/main'
13+
if: github.ref == 'refs/heads/alpine319'
1414
run: |
15-
if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_PYTHON_MAIN }}" ]; then
16-
echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_PYTHON_MAIN is set; skipping trigger. ****"
17-
echo "Github secret \`PAUSE_EXTERNAL_TRIGGER_PYTHON_MAIN\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY
15+
printf "# External trigger for docker-python\n\n" >> $GITHUB_STEP_SUMMARY
16+
if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_PYTHON_ALPINE319 }}" ]; then
17+
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
18+
echo "> Github secret \`PAUSE_EXTERNAL_TRIGGER_PYTHON_ALPINE319\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY
1819
exit 0
1920
fi
20-
echo "**** External trigger running off of main branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_PYTHON_MAIN\". ****"
21-
echo "External trigger running off of main branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_PYTHON_MAIN\`" >> $GITHUB_STEP_SUMMARY
22-
echo "**** Retrieving external version ****"
21+
echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY
22+
echo "> External trigger running off of alpine319 branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_PYTHON_ALPINE319\`" >> $GITHUB_STEP_SUMMARY
23+
printf "\n## Retrieving external version\n\n" >> $GITHUB_STEP_SUMMARY
2324
EXT_RELEASE=$(curl -s "https://endoflife.date/api/python.json" | jq -r '. | .[0].latest')
25+
echo "Type is \`custom_json\`" >> $GITHUB_STEP_SUMMARY
2426
if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then
25-
echo "**** Can't retrieve external version, exiting ****"
26-
FAILURE_REASON="Can't retrieve external version for python branch main"
27+
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
28+
echo "> Can't retrieve external version, exiting" >> $GITHUB_STEP_SUMMARY
29+
FAILURE_REASON="Can't retrieve external version for python branch alpine319"
2730
GHA_TRIGGER_URL="https://github.com/linuxserver/docker-python/actions/runs/${{ github.run_id }}"
2831
curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 16711680,
2932
"description": "**Trigger Failed** \n**Reason:** '"${FAILURE_REASON}"' \n**Trigger URL:** '"${GHA_TRIGGER_URL}"' \n"}],
3033
"username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }}
3134
exit 1
3235
fi
3336
EXT_RELEASE=$(echo ${EXT_RELEASE} | sed 's/[~,%@+;:/]//g')
34-
echo "**** External version: ${EXT_RELEASE} ****"
35-
echo "External version: ${EXT_RELEASE}" >> $GITHUB_STEP_SUMMARY
36-
echo "**** Retrieving last pushed version ****"
37+
echo "External version: \`${EXT_RELEASE}\`" >> $GITHUB_STEP_SUMMARY
38+
echo "Retrieving last pushed version" >> $GITHUB_STEP_SUMMARY
3739
image="linuxserver/python"
3840
tag="alpine319"
3941
token=$(curl -sX GET \
@@ -60,37 +62,34 @@ jobs:
6062
IMAGE_RELEASE=$(echo ${image_info} | jq -r '.Labels.build_version' | awk '{print $3}')
6163
IMAGE_VERSION=$(echo ${IMAGE_RELEASE} | awk -F'-ls' '{print $1}')
6264
if [ -z "${IMAGE_VERSION}" ]; then
63-
echo "**** Can't retrieve last pushed version, exiting ****"
65+
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
66+
echo "Can't retrieve last pushed version, exiting" >> $GITHUB_STEP_SUMMARY
6467
FAILURE_REASON="Can't retrieve last pushed version for python tag alpine319"
6568
curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 16711680,
6669
"description": "**Trigger Failed** \n**Reason:** '"${FAILURE_REASON}"' \n"}],
6770
"username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }}
6871
exit 1
6972
fi
70-
echo "**** Last pushed version: ${IMAGE_VERSION} ****"
71-
echo "Last pushed version: ${IMAGE_VERSION}" >> $GITHUB_STEP_SUMMARY
73+
echo "Last pushed version: \`${IMAGE_VERSION}\`" >> $GITHUB_STEP_SUMMARY
7274
if [ "${EXT_RELEASE}" == "${IMAGE_VERSION}" ]; then
73-
echo "**** Version ${EXT_RELEASE} already pushed, exiting ****"
74-
echo "Version ${EXT_RELEASE} already pushed, exiting" >> $GITHUB_STEP_SUMMARY
75+
echo "Version \`${EXT_RELEASE}\` already pushed, exiting" >> $GITHUB_STEP_SUMMARY
7576
exit 0
76-
elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-python/job/main/lastBuild/api/json | jq -r '.building') == "true" ]; then
77-
echo "**** New version ${EXT_RELEASE} found; but there already seems to be an active build on Jenkins; exiting ****"
78-
echo "New version ${EXT_RELEASE} found; but there already seems to be an active build on Jenkins; exiting" >> $GITHUB_STEP_SUMMARY
77+
elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-python/job/alpine319/lastBuild/api/json | jq -r '.building') == "true" ]; then
78+
echo "New version \`${EXT_RELEASE}\` found; but there already seems to be an active build on Jenkins; exiting" >> $GITHUB_STEP_SUMMARY
7979
exit 0
8080
else
81-
echo "**** New version ${EXT_RELEASE} found; old version was ${IMAGE_VERSION}. Triggering new build ****"
82-
echo "New version ${EXT_RELEASE} found; old version was ${IMAGE_VERSION}. Triggering new build" >> $GITHUB_STEP_SUMMARY
81+
printf "\n## Trigger new build\n\n" >> $GITHUB_STEP_SUMMARY
82+
echo "New version \`${EXT_RELEASE}\` found; old version was \`${IMAGE_VERSION}\`. Triggering new build" >> $GITHUB_STEP_SUMMARY
8383
response=$(curl -iX POST \
84-
https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-python/job/main/buildWithParameters?PACKAGE_CHECK=false \
84+
https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-python/job/alpine319/buildWithParameters?PACKAGE_CHECK=false \
8585
--user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|")
86-
echo "**** Jenkins job queue url: ${response%$'\r'} ****"
87-
echo "**** Sleeping 10 seconds until job starts ****"
86+
echo "Jenkins [job queue url](${response%$'\r'})" >> $GITHUB_STEP_SUMMARY
87+
echo "Sleeping 10 seconds until job starts" >> $GITHUB_STEP_SUMMARY
8888
sleep 10
8989
buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url')
9090
buildurl="${buildurl%$'\r'}"
91-
echo "**** Jenkins job build url: ${buildurl} ****"
92-
echo "Jenkins job build url: ${buildurl}" >> $GITHUB_STEP_SUMMARY
93-
echo "**** Attempting to change the Jenkins job description ****"
91+
echo "Jenkins job [build url](${buildurl})" >> $GITHUB_STEP_SUMMARY
92+
echo "Attempting to change the Jenkins job description" >> $GITHUB_STEP_SUMMARY
9493
curl -iX POST \
9594
"${buildurl}submitDescription" \
9695
--user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \

.github/workflows/external_trigger_scheduler.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,31 +15,31 @@ jobs:
1515

1616
- name: External Trigger Scheduler
1717
run: |
18-
echo "**** Branches found: ****"
19-
git for-each-ref --format='%(refname:short)' refs/remotes
20-
for br in $(git for-each-ref --format='%(refname:short)' refs/remotes)
18+
printf "# External trigger scheduler for docker-python\n\n" >> $GITHUB_STEP_SUMMARY
19+
printf "Found the branches:\n\n%s\n" "$(git for-each-ref --format='- %(refname:lstrip=3)' refs/remotes)" >> $GITHUB_STEP_SUMMARY
20+
for br in $(git for-each-ref --format='%(refname:lstrip=3)' refs/remotes)
2121
do
22-
br=$(echo "$br" | sed 's|origin/||g')
23-
echo "**** Evaluating branch ${br} ****"
22+
if [[ "${br}" == "HEAD" ]]; then
23+
printf "\nSkipping %s.\n" ${br} >> $GITHUB_STEP_SUMMARY
24+
continue
25+
fi
26+
printf "\n## Evaluating \`%s\`\n\n" ${br} >> $GITHUB_STEP_SUMMARY
2427
ls_jenkins_vars=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-python/${br}/jenkins-vars.yml)
2528
ls_branch=$(echo "${ls_jenkins_vars}" | yq -r '.ls_branch')
2629
ls_trigger=$(echo "${ls_jenkins_vars}" | yq -r '.external_type')
2730
if [[ "${br}" == "${ls_branch}" ]] && [[ "${ls_trigger}" != "os" ]]; then
28-
echo "**** Branch ${br} appears to be live and trigger is not os; checking workflow. ****"
31+
echo "Branch appears to be live and trigger is not os; checking workflow." >> $GITHUB_STEP_SUMMARY
2932
if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-python/${br}/.github/workflows/external_trigger.yml > /dev/null 2>&1; then
30-
echo "**** Workflow exists. Triggering external trigger workflow for branch ${br} ****."
31-
echo "Triggering external trigger workflow for branch ${br}" >> $GITHUB_STEP_SUMMARY
33+
echo "Triggering external trigger workflow for branch." >> $GITHUB_STEP_SUMMARY
3234
curl -iX POST \
3335
-H "Authorization: token ${{ secrets.CR_PAT }}" \
3436
-H "Accept: application/vnd.github.v3+json" \
3537
-d "{\"ref\":\"refs/heads/${br}\"}" \
3638
https://api.github.com/repos/linuxserver/docker-python/actions/workflows/external_trigger.yml/dispatches
3739
else
38-
echo "**** Workflow doesn't exist; skipping trigger. ****"
39-
echo "Skipping branch ${br} due to no external trigger workflow present." >> $GITHUB_STEP_SUMMARY
40+
echo "Skipping branch due to no external trigger workflow present." >> $GITHUB_STEP_SUMMARY
4041
fi
4142
else
42-
echo "**** ${br} is either a dev branch, or has no external version; skipping trigger. ****"
43-
echo "Skipping branch ${br} due to being detected as dev branch or having no external version." >> $GITHUB_STEP_SUMMARY
43+
echo "Skipping branch due to being detected as dev branch or having no external version." >> $GITHUB_STEP_SUMMARY
4444
fi
4545
done

.github/workflows/greetings.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ jobs:
99
- uses: actions/first-interaction@v1
1010
with:
1111
issue-message: 'Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.'
12-
pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-python/blob/main/.github/PULL_REQUEST_TEMPLATE.md)!'
12+
pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-python/blob/alpine319/.github/PULL_REQUEST_TEMPLATE.md)!'
1313
repo-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/package_trigger.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,37 +4,37 @@ on:
44
workflow_dispatch:
55

66
jobs:
7-
package-trigger-main:
7+
package-trigger-alpine319:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v4.1.1
1111

1212
- name: Package Trigger
13-
if: github.ref == 'refs/heads/main'
13+
if: github.ref == 'refs/heads/alpine319'
1414
run: |
15-
if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_PYTHON_MAIN }}" ]; then
16-
echo "**** Github secret PAUSE_PACKAGE_TRIGGER_PYTHON_MAIN is set; skipping trigger. ****"
17-
echo "Github secret \`PAUSE_PACKAGE_TRIGGER_PYTHON_MAIN\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY
15+
printf "# Package trigger for docker-python\n\n" >> $GITHUB_STEP_SUMMARY
16+
if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_PYTHON_ALPINE319 }}" ]; then
17+
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
18+
echo "> Github secret \`PAUSE_PACKAGE_TRIGGER_PYTHON_ALPINE319\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY
1819
exit 0
1920
fi
20-
if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-python/job/main/lastBuild/api/json | jq -r '.building') == "true" ]; then
21-
echo "**** There already seems to be an active build on Jenkins; skipping package trigger ****"
22-
echo "There already seems to be an active build on Jenkins; skipping package trigger" >> $GITHUB_STEP_SUMMARY
21+
if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-python/job/alpine319/lastBuild/api/json | jq -r '.building') == "true" ]; then
22+
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
23+
echo "> There already seems to be an active build on Jenkins; skipping package trigger" >> $GITHUB_STEP_SUMMARY
2324
exit 0
2425
fi
25-
echo "**** Package trigger running off of main branch. To disable, set a Github secret named \"PAUSE_PACKAGE_TRIGGER_PYTHON_MAIN\". ****"
26-
echo "Package trigger running off of main branch. To disable, set a Github secret named \`PAUSE_PACKAGE_TRIGGER_PYTHON_MAIN\`" >> $GITHUB_STEP_SUMMARY
26+
echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY
27+
echo "> Package trigger running off of alpine319 branch. To disable, set a Github secret named \`PAUSE_PACKAGE_TRIGGER_PYTHON_ALPINE319\`" >> $GITHUB_STEP_SUMMARY
2728
response=$(curl -iX POST \
28-
https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-python/job/main/buildWithParameters?PACKAGE_CHECK=true \
29+
https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-python/job/alpine319/buildWithParameters?PACKAGE_CHECK=true \
2930
--user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|")
30-
echo "**** Jenkins job queue url: ${response%$'\r'} ****"
31-
echo "**** Sleeping 10 seconds until job starts ****"
31+
echo "Jenkins [job queue url](${response%$'\r'})" >> $GITHUB_STEP_SUMMARY
32+
echo "Sleeping 10 seconds until job starts" >> $GITHUB_STEP_SUMMARY
3233
sleep 10
3334
buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url')
3435
buildurl="${buildurl%$'\r'}"
35-
echo "**** Jenkins job build url: ${buildurl} ****"
36-
echo "Jenkins job build url: ${buildurl}" >> $GITHUB_STEP_SUMMARY
37-
echo "**** Attempting to change the Jenkins job description ****"
36+
echo "Jenkins job [build url](${buildurl})" >> $GITHUB_STEP_SUMMARY
37+
echo "Attempting to change the Jenkins job description" >> $GITHUB_STEP_SUMMARY
3838
curl -iX POST \
3939
"${buildurl}submitDescription" \
4040
--user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \

.github/workflows/package_trigger_scheduler.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,19 @@ jobs:
1515

1616
- name: Package Trigger Scheduler
1717
run: |
18-
echo "**** Branches found: ****"
19-
git for-each-ref --format='%(refname:short)' refs/remotes
20-
for br in $(git for-each-ref --format='%(refname:short)' refs/remotes)
18+
printf "# Package trigger scheduler for docker-python\n\n" >> $GITHUB_STEP_SUMMARY
19+
printf "Found the branches:\n\n%s\n" "$(git for-each-ref --format='- %(refname:lstrip=3)' refs/remotes)" >> $GITHUB_STEP_SUMMARY
20+
for br in $(git for-each-ref --format='%(refname:lstrip=3)' refs/remotes)
2121
do
22-
br=$(echo "$br" | sed 's|origin/||g')
23-
echo "**** Evaluating branch ${br} ****"
22+
if [[ "${br}" == "HEAD" ]]; then
23+
printf "\nSkipping %s.\n" ${br} >> $GITHUB_STEP_SUMMARY
24+
continue
25+
fi
26+
printf "\n## Evaluating \`%s\`\n\n" ${br} >> $GITHUB_STEP_SUMMARY
2427
ls_branch=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-python/${br}/jenkins-vars.yml | yq -r '.ls_branch')
2528
if [ "${br}" == "${ls_branch}" ]; then
26-
echo "**** Branch ${br} appears to be live; checking workflow. ****"
29+
echo "Branch appears to be live; checking workflow." >> $GITHUB_STEP_SUMMARY
2730
if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-python/${br}/.github/workflows/package_trigger.yml > /dev/null 2>&1; then
28-
echo "**** Workflow exists. Triggering package trigger workflow for branch ${br}. ****"
2931
echo "Triggering package trigger workflow for branch ${br}" >> $GITHUB_STEP_SUMMARY
3032
triggered_branches="${triggered_branches}${br} "
3133
curl -iX POST \
@@ -35,11 +37,9 @@ jobs:
3537
https://api.github.com/repos/linuxserver/docker-python/actions/workflows/package_trigger.yml/dispatches
3638
sleep 30
3739
else
38-
echo "**** Workflow doesn't exist; skipping trigger. ****"
3940
echo "Skipping branch ${br} due to no package trigger workflow present." >> $GITHUB_STEP_SUMMARY
4041
fi
4142
else
42-
echo "**** ${br} appears to be a dev branch; skipping trigger. ****"
4343
echo "Skipping branch ${br} due to being detected as dev branch." >> $GITHUB_STEP_SUMMARY
4444
fi
4545
done

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ RUN \
9696
\( \
9797
-type d -a \( -name test -o -name tests \) \
9898
\) -exec rm -rf '{}' + && \
99-
sed -i 's|pythoncompiled|usr/local|' /pythoncompiled/bin/pip /pythoncompiled/bin/pip* /pythoncompiled/bin/wheel && \
99+
find /pythoncompiled/bin -type f -not \( -name 'python*' \) -exec sed -i 's|pythoncompiled|usr/local|' '{}' '+' && \
100100
echo "**** cleanup ****" && \
101101
apk del --purge \
102102
build-dependencies && \

Dockerfile.aarch64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ RUN \
9696
\( \
9797
-type d -a \( -name test -o -name tests \) \
9898
\) -exec rm -rf '{}' + && \
99-
sed -i 's|pythoncompiled|usr/local|' /pythoncompiled/bin/pip /pythoncompiled/bin/pip* /pythoncompiled/bin/wheel && \
99+
find /pythoncompiled/bin -type f -not \( -name 'python*' \) -exec sed -i 's|pythoncompiled|usr/local|' '{}' '+' && \
100100
echo "**** cleanup ****" && \
101101
apk del --purge \
102102
build-dependencies && \

0 commit comments

Comments
 (0)