build and push arm64 docker image - #99
Merged
Merged
Conversation
|
|
||
| # Set environment variables for NVIDIA capabilities | ||
| ENV NVIDIA_DRIVER_CAPABILITIES all | ||
| ENV NVIDIA_DRIVER_CAPABILITIES=all |
Owner
There was a problem hiding this comment.
any reason to change this?
the current version seems to work
Contributor
Author
There was a problem hiding this comment.
docker build gives a warning because that format for setting env vars is deprecated:
https://github.com/ardoviniandrea/ViniPlay/actions/runs/19577828896/job/56067856778#step:6:2072
Contributor
Author
There was a problem hiding this comment.
By the way, this is not a functional change, just a formatting change. But docker has been removing a lot of deprecated things in their latest releases, this way of setting vars may be removed soon, which would break builds.
ardoviniandrea
approved these changes
Dec 9, 2025
ardoviniandrea
added a commit
that referenced
this pull request
Jan 5, 2026
* Update server.js * Update index.html * Update guide.js * Update icons.js * Update player.js * Update ui.js * Update server.js adding cast fixes * Update cast.js cast * Update player.js * Update server.js * Update index.html * Update api.js * Update auth.js * Update cast.js * Update dvr.js * Update guide.js * Update player.js * Update notification.js * Update settings.js * Update state.js * Update server.js * Update package.json * Update index.html * Update main.js * Update api.js * Create codecs.js * Update icons.js * Update player.js * Update settings.js * Update ui.js * Update server.js * Update index.html * Update auth.js * Update guide.js * Update icons.js * Update multiview.js * Update player_direct.js * Update settings.js * Update state.js * Update utils.js * Update vod.js * Add support for r600 radeon gpu detection (#97) * build and push arm64 docker image (#99) * build and push arm64 docker image * enable docker buildx for multi-platform images * Update server.js * Update index.html * Update main.js * Update api.js * Update auth.js * Update settings.js * Update state.js * Update package.json * Update package.json --------- Co-authored-by: Paul Rimmer <RoninTech@users.noreply.github.com> Co-authored-by: aptalca <541623+aptalca@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Tested a locally built image for arm64 and it seems to work via qemu with built-in ffmpeg
Local test steps:
docker build -t test --platform=linux/arm64 .docker run -d --rm --name test -p 8998:8998 testdocker logs test -fdocker stop test