From c828533df9e19bcd2fab2b316250e3586c0a4d1f Mon Sep 17 00:00:00 2001 From: Maicon Berlofa Date: Wed, 3 Jun 2026 16:18:06 -0300 Subject: [PATCH] chore(openreel-video): bump upstream to v0.5.0 --- .github/workflows/build.yaml | 2 +- Dockerfile | 2 +- README.md | 14 ++++++++------ 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 92d42ff..315dbc2 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -10,7 +10,7 @@ permissions: id-token: write env: - OPENREEL_VERSION: v0.4.0 + OPENREEL_VERSION: v0.5.0 jobs: build-push: diff --git a/Dockerfile b/Dockerfile index acb9be3..f5f77e7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM node:24-alpine AS source -ARG OPENREEL_VERSION=v0.4.0 +ARG OPENREEL_VERSION=v0.5.0 RUN apk add --no-cache git WORKDIR /src diff --git a/README.md b/README.md index 9a6fd76..02a81cf 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,7 @@ HelmForge container image for OpenReel Video, a browser-based video editor. ## Image -- `docker.io/helmforge/openreel-video:v0.4.0` -- `docker.io/helmforge/openreel-video:latest` +- `docker.io/helmforge/openreel-video:v0.5.0` The image builds the upstream `Augani/openreel-video` release and serves the Vite static output with an unprivileged NGINX runtime on port `8080`. @@ -20,11 +19,14 @@ Vite static output with an unprivileged NGINX runtime on port `8080`. ## Build Locally ```bash -docker build --build-arg OPENREEL_VERSION=v0.4.0 -t helmforge/openreel-video:v0.4.0 . -docker run --rm -p 8080:8080 helmforge/openreel-video:v0.4.0 +docker build \ + --build-arg OPENREEL_VERSION=v0.5.0 \ + -t helmforge/openreel-video:v0.5.0 . +docker run --rm -p 8080:8080 helmforge/openreel-video:v0.5.0 +curl -fsS http://127.0.0.1:8080/healthz ``` ## Source -- Upstream: https://github.com/Augani/openreel-video -- Image: https://github.com/helmforgedev/openreel-video +- Upstream: [Augani/openreel-video](https://github.com/Augani/openreel-video) +- Image: [helmforgedev/openreel-video](https://github.com/helmforgedev/openreel-video)