Skip to content

Commit c666ac2

Browse files
authored
Merge pull request #469 from boosterl/add-riscv-build-support
Add riscv64 build support
2 parents 80192ab + 4ad54a4 commit c666ac2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
inputs:
88
platforms:
99
description: "The platforms to build (CSV)"
10-
default: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x
10+
default: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le,linux/riscv64,linux/s390x
1111
required: false
1212
type: string
1313
outputs:

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
ARG PYTHON_VERSION=3.13.0
3+
ARG PYTHON_VERSION=3.13.11
44
ARG WEEWX_UID=1000
55
ARG WEEWX_HOME="/home/weewx"
66

@@ -46,7 +46,7 @@ LABEL org.opencontainers.image.vendor="Geekpad"
4646
RUN addgroup --system --gid ${WEEWX_UID} weewx \
4747
&& adduser --system --uid ${WEEWX_UID} --ingroup weewx weewx
4848

49-
RUN apt-get update && apt-get install -y git libusb-1.0-0
49+
RUN apt-get update && apt-get install -y git libusb-1.0-0 libtiff6 libopenjp2-7 libfreetype6
5050

5151
WORKDIR ${WEEWX_HOME}
5252

README.md

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

99
[![Docker Pulls](https://img.shields.io/docker/pulls/felddy/weewx)](https://hub.docker.com/r/felddy/weewx)
1010
[![Docker Image Size (latest by date)](https://img.shields.io/docker/image-size/felddy/weewx)](https://hub.docker.com/r/felddy/weewx)
11-
[![Platforms](https://img.shields.io/badge/platforms-amd64%20%7C%20arm%2Fv6%20%7C%20arm%2Fv7%20%7C%20arm64%20%7C%20ppc64le%20%7C%20s390x-blue)](https://hub.docker.com/r/felddy/weewx/tags)
11+
[![Platforms](https://img.shields.io/badge/platforms-amd64%20%7C%20arm%2Fv6%20%7C%20arm%2Fv7%20%7C%20arm64%20%7C%20ppc64le%20%7C%20riscv64%20%7C%20s390x-blue)](https://hub.docker.com/r/felddy/weewx/tags)
1212

1313
This docker container can be used to quickly get a
1414
[WeeWX](http://weewx.com) instance up and running.

0 commit comments

Comments
 (0)