mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-18 20:09:54 +00:00
536df759ae
- remove ubuntu 21.04 from CI (end of life) - adjust matrix strategy for clang.yml - Use lessons learned from RetroArcher on localize.yml, crowdin.yml, and locale.py - Add end of life comments to Dockerfiles - Adjust dependency order in Dockerfiles
64 lines
2.0 KiB
Plaintext
64 lines
2.0 KiB
Plaintext
FROM ubuntu:18.04 AS sunshine-ubuntu_18_04
|
|
|
|
# Ubuntu 18.04 end of life is April 2028
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
ARG TZ="Europe/London"
|
|
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|
RUN apt-get update -y && \
|
|
apt-get install -y \
|
|
software-properties-common \
|
|
&& add-apt-repository ppa:savoury1/graphics && \
|
|
add-apt-repository ppa:savoury1/multimedia && \
|
|
add-apt-repository ppa:savoury1/ffmpeg4 && \
|
|
add-apt-repository ppa:savoury1/boost-defaults-1.71 && \
|
|
add-apt-repository ppa:ubuntu-toolchain-r/test && \
|
|
apt-get update -y && \
|
|
apt-get install -y \
|
|
build-essential \
|
|
cmake \
|
|
gcc-10 \
|
|
git \
|
|
g++-10 \
|
|
libavdevice-dev \
|
|
libboost-filesystem1.71-dev \
|
|
libboost-log1.71-dev \
|
|
libboost-regex1.71-dev \
|
|
libboost-thread1.71-dev \
|
|
libcap-dev \
|
|
libdrm-dev \
|
|
libevdev-dev \
|
|
libpulse-dev \
|
|
libopus-dev \
|
|
libssl-dev \
|
|
libwayland-dev \
|
|
libx11-dev \
|
|
libxcb-shm0-dev \
|
|
libxcb-xfixes0-dev \
|
|
libxcb1-dev \
|
|
libxfixes-dev \
|
|
libxrandr-dev \
|
|
libxtst-dev \
|
|
wget \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Update gcc alias
|
|
RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 100 --slave /usr/bin/g++ g++ /usr/bin/g++-10
|
|
|
|
# Install CuDA
|
|
RUN wget https://developer.download.nvidia.com/compute/cuda/11.4.2/local_installers/cuda_11.4.2_470.57.02_linux.run --progress=bar:force:noscroll -q --show-progress -O /root/cuda.run && chmod a+x /root/cuda.run
|
|
RUN /root/cuda.run --silent --toolkit --toolkitpath=/usr --no-opengl-libs --no-man-page --no-drm && rm /root/cuda.run
|
|
|
|
# Install cmake
|
|
ADD https://cmake.org/files/v3.22/cmake-3.22.2-linux-x86_64.sh /cmake-3.22.2-linux-x86_64.sh
|
|
RUN mkdir /opt/cmake
|
|
RUN sh /cmake-3.22.2-linux-x86_64.sh --prefix=/opt/cmake --skip-license
|
|
RUN ln -s /opt/cmake/bin/cmake /usr/local/bin/cmake
|
|
RUN cmake --version
|
|
|
|
# Entrypoint
|
|
COPY build-private.sh /root/build.sh
|
|
ENTRYPOINT ["/root/build.sh", "-deb"]
|