Skip to content

Commit

Permalink
Docker: Add platform linux/arm/v7
Browse files Browse the repository at this point in the history
  • Loading branch information
gutzbenj committed Jan 17, 2025
1 parent e5e06c6 commit 87a9157
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:
with:
context: .
file: Dockerfile
platforms: linux/amd64,linux/arm64 # TODO: add linux/arm/v7
platforms: linux/amd64,linux/arm64,linux/arm/v7
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
push: true
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Development

### Feature
- Docker: Add platform `linux/arm/v7`

## 0.102.0 - 2025-01-17

### Feature
Expand Down
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ RUN \
RUN pip install uv

# Install wradlib.
# linux/arm/v7 requires to install pyproj
RUN apt-get install --no-install-recommends --no-install-suggests --yes \
libproj-dev proj-bin proj-data \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN uv pip install --system wradlib

# Install Wetterdienst.
Expand Down

0 comments on commit 87a9157

Please sign in to comment.