Skip to content

Commit

Permalink
Added armv7 back and added armv6 and i386 support
Browse files Browse the repository at this point in the history
Signed-off-by: Samuel Howard <[email protected]>
  • Loading branch information
samhaswon committed Aug 3, 2023
1 parent 74eee3a commit 6d3fc14
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ RUN echo "***** Getting required packages *****" && \
apk add --no-cache --update \
gcc \
musl-dev \
linux-headers && \
linux-headers \
python3-dev \
g++ \
git && \
pip install --upgrade pip

# Build dependencies
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ A self-hosted webapp of various Bible versions including the KJV, ESV, and ASV.
|:------------:|:---------:|--------|
| x86-64 || latest |
| arm64v8 || latest |
| arm32v7 || latest |
| arm32v6 || latest |
| i386 || latest |

## Examples
*Note: Screen shots taken in dark mode <br>
Expand Down
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
build-and-push:
docker buildx build --push --platform linux/arm64/v8,linux/amd64 --tag samhaswon/self-hosted-bible:latest .
docker buildx build --push --platform linux/arm/v6,linux/arm/v7,linux/arm64/v8,linux/amd64,linux/386 --tag samhaswon/self-hosted-bible:latest .

0 comments on commit 6d3fc14

Please sign in to comment.