Skip to content

Commit

Permalink
build: update Dockerfiles to use Streamlink version 6.10.0 for default
Browse files Browse the repository at this point in the history
Because the previous versions is no longer available at the APK source.

- Format the Dockerfile table for consistent column alignment
- Update the build command examples to use `BUILD_VERSION=6.10.0`
- Change `VERSION` arguments in `alpine.Dockerfile`, `distroless.Dockerfile`, and `ubi.Dockerfile` from `6.7.4` to `6.10.0`
- Update the submodule `streamlink` to the latest commit

Signed-off-by: 陳鈞 <[email protected]>
  • Loading branch information
jim60105 committed Oct 3, 2024
1 parent 8495dcf commit c8c4049
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ You can find all available tags at [ghcr.io](https://github.com/jim60105/docker-
This repository contains four Dockerfiles for building Docker images based on different base images:

| Dockerfile | Base Image |
| ---------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- |
|------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------|
| [Dockerfile](Dockerfile) | [Alpine official image](https://hub.docker.com/_/alpine/) |
| [alpine.Dockerfile](alpine.Dockerfile) | [Python official image 3.12-alpine](https://hub.docker.com/_/python/) |
| [ubi.Dockerfile](ubi.Dockerfile) | [Red Hat Universal Base Image 9 Minimal](https://catalog.redhat.com/software/containers/ubi9/ubi-minimal/615bd9b4075b022acc111bf5) |
Expand All @@ -47,9 +47,9 @@ It is important to note that the [Dockerfile](Dockerfile) always builds with [th

```bash
docker build -t streamlink .
docker build --build-arg BUILD_VERSION=6.7.4 -f ./alpine.Dockerfile -t streamlink:alpine .
docker build --build-arg BUILD_VERSION=6.7.4 -f ./ubi.Dockerfile -t streamlink:ubi .
docker build --build-arg BUILD_VERSION=6.7.4 -f ./distroless.Dockerfile -t streamlink:distroless .
docker build --build-arg BUILD_VERSION=6.10.0 -f ./alpine.Dockerfile -t streamlink:alpine .
docker build --build-arg BUILD_VERSION=6.10.0 -f ./ubi.Dockerfile -t streamlink:ubi .
docker build --build-arg BUILD_VERSION=6.10.0 -f ./distroless.Dockerfile -t streamlink:distroless .
```

> [!TIP]
Expand Down
2 changes: 1 addition & 1 deletion alpine.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1
ARG UID=1001
ARG VERSION=6.7.4
ARG VERSION=6.10.0
ARG RELEASE=0

########################################
Expand Down
2 changes: 1 addition & 1 deletion distroless.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1
ARG VERSION=6.7.4
ARG VERSION=6.10.0
ARG RELEASE=0

########################################
Expand Down
2 changes: 1 addition & 1 deletion streamlink
Submodule streamlink updated 106 files
2 changes: 1 addition & 1 deletion ubi.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1
ARG UID=1001
ARG VERSION=6.7.4
ARG VERSION=6.10.0
ARG RELEASE=0

########################################
Expand Down

0 comments on commit c8c4049

Please sign in to comment.