Merge pull request #36 from linuxserver/focal-beta

Focal beta
This commit is contained in:
aptalca 2020-12-21 17:56:30 -05:00 committed by GitHub
commit faaa582874
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 12 additions and 11 deletions

View File

@ -32,7 +32,7 @@ RUN \
/tmp/opt/emby-server/etc
# runtime stage
FROM ghcr.io/linuxserver/baseimage-ubuntu:bionic
FROM ghcr.io/linuxserver/baseimage-ubuntu:focal
# set version label
ARG BUILD_DATE

View File

@ -1,4 +1,4 @@
FROM ghcr.io/linuxserver/baseimage-ubuntu:bionic as buildstage
FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-bionic as buildstage
# build args
ARG EMBY_RELEASE
@ -32,7 +32,7 @@ RUN \
/tmp/opt/emby-server/etc
# runtime stage
FROM ghcr.io/linuxserver/baseimage-ubuntu:bionic
FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-focal
# set version label
ARG BUILD_DATE
@ -44,11 +44,14 @@ LABEL maintainer="thelamer"
ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility"
RUN \
echo "**** add emby deps ****" && \
echo "**** add emby deps *****" && \
curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \
echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa-nightly/ubuntu focal main">> /etc/apt/sources.list.d/raspbins.list && \
apt-get update && \
apt-get install -y --no-install-recommends \
libomxil-bellagio0 \
libomxil-bellagio-bin && \
libomxil-bellagio-bin \
libraspberrypi0 && \
echo "**** cleanup ****" && \
rm -rf \
/tmp/* \

View File

@ -32,7 +32,7 @@ RUN \
/tmp/opt/emby-server/etc
# runtime stage
FROM ghcr.io/linuxserver/baseimage-ubuntu:arm32v7-bionic
FROM ghcr.io/linuxserver/baseimage-ubuntu:arm32v7-focal
# set version label
ARG BUILD_DATE
@ -44,13 +44,9 @@ LABEL maintainer="thelamer"
ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility"
RUN \
echo "**** install packages ****" && \
apt-get update && \
apt-get install -y --no-install-recommends \
gnupg && \
echo "**** add emby deps *****" && \
curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \
echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa/ubuntu bionic main">> /etc/apt/sources.list.d/raspbins.list && \
echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa-nightly/ubuntu focal main">> /etc/apt/sources.list.d/raspbins.list && \
apt-get update && \
apt-get install -y --no-install-recommends \
libomxil-bellagio0 \

View File

@ -291,6 +291,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
## Versions
* **21.12.20:** - Rebase to Focal, see [here](https://docs.linuxserver.io/faq#my-host-is-incompatible-with-images-based-on-ubuntu-focal) for troubleshooting armhf.
* **03.07.20:** - Add support for amd vaapi hw transcode.
* **28.02.20:** - Add v4l2 support on Raspberry Pi.
* **26.02.20:** - Add openmax support on Raspberry Pi.

View File

@ -91,6 +91,7 @@ app_setup_block: |
# changelog
changelogs:
- { date: "21.12.20:", desc: "Rebase to Focal, see [here](https://docs.linuxserver.io/faq#my-host-is-incompatible-with-images-based-on-ubuntu-focal) for troubleshooting armhf." }
- { date: "03.07.20:", desc: "Add support for amd vaapi hw transcode." }
- { date: "28.02.20:", desc: "Add v4l2 support on Raspberry Pi." }
- { date: "26.02.20:", desc: "Add openmax support on Raspberry Pi." }