-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
64 additions
and
15 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# https://github.com/ehough/docker-kodi | ||
# https://hub.docker.com/r/erichough/kodi/ | ||
# | ||
# Copyright 2018-2020 - Eric Hough ([email protected]) | ||
# Copyright 2018-2021 - Eric Hough ([email protected]) | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
|
@@ -18,9 +18,9 @@ | |
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
|
||
FROM ubuntu:bionic | ||
FROM ubuntu:focal | ||
|
||
ARG KODI_VERSION=18.8 | ||
ARG KODI_VERSION=19.0 | ||
|
||
# https://github.com/ehough/docker-nfs-server/pull/3#issuecomment-387880692 | ||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
@@ -33,18 +33,21 @@ RUN apt-get update && \ | |
apt-get -y --purge autoremove && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
ARG KODI_EXTRA_PACKAGES= | ||
|
||
# besides kodi, we will install a few extra packages: | ||
# - ca-certificates allows Kodi to properly establish HTTPS connections | ||
# - kodi-eventclients-kodi-send allows us to shut down Kodi gracefully upon container termination | ||
# - kodi-game-libretro allows Kodi to utilize Libretro cores as game add-ons | ||
# - kodi-game-libretro-* Libretro cores | ||
# - kodi-inputstream-* input stream add-ons | ||
# - kodi-peripheral-* enables the use of gamepads, joysticks, game controllers, etc. | ||
# - kodi-pvr-* PVR add-ons | ||
# - kodi-screensaver-* additional screensavers | ||
# - locales additional spoken language support (via x11docker --lang option) | ||
# - pulseaudio in case the user prefers PulseAudio instead of ALSA | ||
# - tzdata necessary for timezone selection | ||
# - va-driver-all the full suite of drivers for the Video Acceleration API (VA API) | ||
# - kodi-game-libretro-* Libretro cores (DEPRECATED: WILL BE REMOVED IN VERSION 4 OF THIS IMAGE) | ||
# - kodi-pvr-* PVR add-ons (DEPRECATED: WILL BE REMOVED IN VERSION 4 OF THIS IMAGE) | ||
# - kodi-screensaver-* additional screensavers (DEPRECATED: WILL BE REMOVED IN VERSION 4 OF THIS IMAGE) | ||
RUN packages=" \ | ||
\ | ||
ca-certificates \ | ||
|
@@ -58,7 +61,6 @@ RUN packages=" \ | |
kodi-game-libretro-bsnes-mercury-balanced \ | ||
kodi-game-libretro-bsnes-mercury-performance \ | ||
kodi-game-libretro-desmume \ | ||
kodi-game-libretro-fbalpha \ | ||
kodi-game-libretro-fbalpha2012 \ | ||
kodi-game-libretro-fuse \ | ||
kodi-game-libretro-gambatte \ | ||
|
@@ -103,7 +105,9 @@ RUN packages=" \ | |
kodi-screensaver-stars \ | ||
locales \ | ||
pulseaudio \ | ||
tzdata" && \ | ||
tzdata \ | ||
va-driver-all \ | ||
${KODI_EXTRA_PACKAGES}" && \ | ||
\ | ||
apt-get update && \ | ||
apt-get install -y --no-install-recommends $packages && \ | ||
|
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
# https://github.com/ehough/docker-kodi | ||
# https://hub.docker.com/r/erichough/kodi/ | ||
# | ||
# Copyright 2018-2020 - Eric Hough ([email protected]) | ||
# Copyright 2018-2021 - Eric Hough ([email protected]) | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
|