Skip to content

Commit

Permalink
add tzdata package. fixes #5
Browse files Browse the repository at this point in the history
  • Loading branch information
ehough committed Sep 7, 2018
1 parent f761a54 commit f1ef05f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

* MediaPortal TV-Server PVR support

### Fixed

* Wrong timezone / timezone can not be set ([#5](https://github.com/ehough/docker-kodi/issues/5))

## [1.1.0] - 2018-05-24

### Added
Expand Down
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ RUN apt-get update && \
rm -rf /var/lib/apt/lists/*

# install base packages
RUN packages="kodi kodi-eventclients-xbmc-send" && \
# kodi-eventclients-xbmc-send allows us to shut down Kodi gracefully upon container termination
# tzdata is necessary for timezone functionality (see https://github.com/mviereck/x11docker/issues/50)
RUN packages="kodi kodi-eventclients-xbmc-send tzdata" && \
apt-get update && \
apt-get install -y --no-install-recommends $packages && \
apt-get -y --purge autoremove && \
Expand Down

0 comments on commit f1ef05f

Please sign in to comment.