-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[kiwix-build] Switch from bionic to manylinux image
- Loading branch information
1 parent
e9f32bf
commit 78b2e23
Showing
4 changed files
with
23 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
FROM quay.io/pypa/manylinux_2_28_aarch64 | ||
LABEL org.opencontainers.image.source https://github.com/kiwix/container-images | ||
|
||
ENV LANG C.UTF-8 | ||
ENV OS_NAME manylinux_aarch64 | ||
|
||
# Create user | ||
RUN groupadd --gid 121 runner | ||
RUN useradd --uid 1001 --gid 121 --create-home runner | ||
USER runner | ||
ENV PATH /home/runner/.local/bin:$PATH |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
FROM quay.io/pypa/manylinux_2_28_x86_64 | ||
LABEL org.opencontainers.image.source https://github.com/kiwix/container-images | ||
|
||
ENV LANG C.UTF-8 | ||
ENV OS_NAME manylinux_x86_64 | ||
|
||
# Create user | ||
RUN groupadd --gid 121 runner | ||
RUN useradd --uid 1001 --gid 121 --create-home runner | ||
USER runner | ||
ENV PATH /home/runner/.local/bin:$PATH |