Skip to content

Commit cf2ec41

Browse files
authored
Fix arm (#9)
* Fix arm * Fix build * Fix build
1 parent 4e22319 commit cf2ec41

File tree

4 files changed

+5
-12
lines changed

4 files changed

+5
-12
lines changed

.github/workflows/call-baseimage-update.yml

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

88
jobs:
99
call-workflow:
10-
uses: linuxserver-labs/docker-actions/.github/workflows/check-baseimage-update.yml@v7.0.6
10+
uses: linuxserver-labs/docker-actions/.github/workflows/check-baseimage-update.yml@v8-test
1111
with:
1212
repo_owner: ${{ github.repository_owner }}
1313
baseimage: "ubuntu"

.github/workflows/call-build-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
call-workflow:
11-
uses: linuxserver-labs/docker-actions/.github/workflows/build-image.yml@v7.0.6
11+
uses: linuxserver-labs/docker-actions/.github/workflows/build-image.yml@v8-test
1212
with:
1313
repo_owner: ${{ github.repository_owner }}
1414
app_name: "simplelogin"

.github/workflows/call-check-and-release.yml

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

88
jobs:
99
call-workflow:
10-
uses: linuxserver-labs/docker-actions/.github/workflows/check-and-release.yml@v7.0.6
10+
uses: linuxserver-labs/docker-actions/.github/workflows/check-and-release.yml@v8-test
1111
with:
1212
repo_owner: ${{ github.repository_owner }}
1313
app_name: "simplelogin"

Dockerfile

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,12 @@ RUN \
4848
echo "**** install build packages ****" && \
4949
apt-get update && \
5050
apt-get install -y --no-install-recommends \
51-
build-essential \
5251
clang \
53-
cmake \
5452
gcc \
5553
git \
5654
libre2-dev \
5755
ninja-build \
58-
pkg-config \
59-
python3 \
60-
python3-dev && \
56+
pkg-config && \
6157
curl -o /tmp/uv-installer.sh -L https://astral.sh/uv/install.sh && \
6258
sh /tmp/uv-installer.sh && \
6359
uv python install `cat .python-version` && \
@@ -68,15 +64,12 @@ RUN \
6864
libre2-10 && \
6965
echo "**** cleanup ****" && \
7066
apt-get purge -y \
71-
build-essential \
7267
clang \
73-
cmake \
7468
gcc \
7569
git \
7670
libre2-dev \
7771
ninja-build \
78-
pkg-config \
79-
python3-dev && \
72+
pkg-config && \
8073
apt-get autoremove -y && \
8174
apt-get autoclean -y && \
8275
rm -rf \

0 commit comments

Comments
 (0)