mirror of
https://github.com/LizardByte/Sunshine.git
synced 2026-02-04 21:45:23 +00:00
136 lines
2.8 KiB
Docker
136 lines
2.8 KiB
Docker
# syntax=docker/dockerfile:1
|
|
# artifacts: true
|
|
# platforms: linux/amd64,linux/arm64/v8
|
|
# platforms_pr: linux/amd64
|
|
# no-cache-filters: sunshine-base,artifacts,sunshine
|
|
ARG BASE=debian
|
|
ARG TAG=trixie
|
|
FROM ${BASE}:${TAG} AS sunshine-base
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
FROM sunshine-base AS sunshine-deps
|
|
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|
|
|
# Copy only the build script and necessary files first for better layer caching
|
|
WORKDIR /build/sunshine/
|
|
COPY --link scripts/linux_build.sh ./scripts/linux_build.sh
|
|
COPY --link packaging/linux/patches/ ./packaging/linux/patches/
|
|
|
|
# Install dependencies first - this layer will be cached
|
|
RUN <<_DEPS
|
|
#!/bin/bash
|
|
set -e
|
|
chmod +x ./scripts/linux_build.sh
|
|
./scripts/linux_build.sh \
|
|
--step=deps \
|
|
--cuda-patches \
|
|
--sudo-off
|
|
apt-get clean
|
|
rm -rf /var/lib/apt/lists/*
|
|
_DEPS
|
|
|
|
FROM sunshine-deps AS sunshine-build
|
|
|
|
ARG BRANCH
|
|
ARG BUILD_VERSION
|
|
ARG COMMIT
|
|
# note: BUILD_VERSION may be blank
|
|
|
|
ENV BRANCH=${BRANCH}
|
|
ENV BUILD_VERSION=${BUILD_VERSION}
|
|
ENV COMMIT=${COMMIT}
|
|
|
|
# Now copy the full repository
|
|
COPY --link .. .
|
|
|
|
# Configure, validate, build and package
|
|
RUN <<_BUILD
|
|
#!/bin/bash
|
|
set -e
|
|
./scripts/linux_build.sh \
|
|
--step=cmake \
|
|
--publisher-name='LizardByte' \
|
|
--publisher-website='https://app.lizardbyte.dev' \
|
|
--publisher-issue-url='https://app.lizardbyte.dev/support' \
|
|
--sudo-off
|
|
|
|
./scripts/linux_build.sh \
|
|
--step=validation \
|
|
--sudo-off
|
|
|
|
./scripts/linux_build.sh \
|
|
--step=build \
|
|
--sudo-off
|
|
|
|
./scripts/linux_build.sh \
|
|
--step=package \
|
|
--sudo-off
|
|
_BUILD
|
|
|
|
# run tests
|
|
WORKDIR /build/sunshine/build/tests
|
|
RUN <<_TEST
|
|
#!/bin/bash
|
|
set -e
|
|
export DISPLAY=:1
|
|
Xvfb ${DISPLAY} -screen 0 1024x768x24 &
|
|
./test_sunshine --gtest_color=yes
|
|
_TEST
|
|
|
|
FROM sunshine-base AS sunshine
|
|
|
|
ARG BASE
|
|
ARG TAG
|
|
ARG TARGETARCH
|
|
|
|
# artifacts to be extracted in CI
|
|
COPY --link --from=sunshine-build /build/sunshine/build/cpack_artifacts/Sunshine.deb /artifacts/sunshine-${BASE}-${TAG}-${TARGETARCH}.deb
|
|
|
|
# copy deb from builder
|
|
COPY --link --from=sunshine-build /build/sunshine/build/cpack_artifacts/Sunshine.deb /sunshine.deb
|
|
|
|
# install sunshine
|
|
RUN <<_INSTALL_SUNSHINE
|
|
#!/bin/bash
|
|
set -e
|
|
apt-get update -y
|
|
apt-get install -y --no-install-recommends /sunshine.deb
|
|
apt-get clean
|
|
rm -rf /var/lib/apt/lists/*
|
|
_INSTALL_SUNSHINE
|
|
|
|
# network setup
|
|
EXPOSE 47984-47990/tcp
|
|
EXPOSE 48010
|
|
EXPOSE 47998-48000/udp
|
|
|
|
# setup user
|
|
ARG PGID=1000
|
|
ENV PGID=${PGID}
|
|
ARG PUID=1000
|
|
ENV PUID=${PUID}
|
|
ENV TZ="UTC"
|
|
ARG UNAME=lizard
|
|
ENV UNAME=${UNAME}
|
|
|
|
ENV HOME=/home/$UNAME
|
|
|
|
# setup user
|
|
RUN <<_SETUP_USER
|
|
#!/bin/bash
|
|
set -e
|
|
groupadd -f -g "${PGID}" "${UNAME}"
|
|
useradd -lm -d ${HOME} -s /bin/bash -g "${PGID}" -u "${PUID}" "${UNAME}"
|
|
mkdir -p ${HOME}/.config/sunshine
|
|
ln -s ${HOME}/.config/sunshine /config
|
|
chown -R ${UNAME} ${HOME}
|
|
_SETUP_USER
|
|
|
|
USER ${UNAME}
|
|
WORKDIR ${HOME}
|
|
|
|
# entrypoint
|
|
ENTRYPOINT ["/usr/bin/sunshine"]
|