Skip to content

Commit dfc1a4b

Browse files
committed
v0.1.0: first tagged release, refresh upstream versions
Bump the bundled Stremio Web build v5.0.0-beta.8 -> v5.0.0-beta.38 (STREMIO_VERSION arg) and the base image alpine:3.20 -> alpine:3.22. nginx serves the static Stremio Web build unchanged; the image builds clean and serves the page (HTTP 200) as verified locally. Adds CHANGELOG.md.
1 parent c6b30b0 commit dfc1a4b

3 files changed

Lines changed: 17 additions & 2 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
git-update.sh

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Changelog
2+
3+
All notable changes per release. Versions follow [semver](https://semver.org).
4+
5+
## v0.1.0 — 2026-07-27
6+
7+
First tagged release.
8+
9+
- Serves a specific Stremio Web build behind nginx (with optional HTTP basic
10+
auth), unzipped from the upstream `stremio-web.zip` release asset at build
11+
time via the `STREMIO_VERSION` build arg.
12+
- Pins Stremio Web `v5.0.0-beta.38` (refreshed from the previously-untagged
13+
`v5.0.0-beta.8`) on base image `alpine:3.22`.
14+
- Image builds clean and serves the Stremio Web page (HTTP 200) verified.

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
FROM alpine:3.20
1+
FROM alpine:3.22
22

33
# Define the build argument for the Stremio version
4-
ARG STREMIO_VERSION=v5.0.0-beta.8
4+
ARG STREMIO_VERSION=v5.0.0-beta.38
55

66
# Install dependencies
77
RUN apk update && \

0 commit comments

Comments
 (0)