aboutsummaryrefslogtreecommitdiff
path: root/deployment/Dockerfile.debian.armhf
blob: bc5e3543fa2959f4536ac373014d3f3db3ae0711 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
FROM mcr.microsoft.com/dotnet/sdk:5.0-buster-slim
# Docker build arguments
ARG SOURCE_DIR=/jellyfin
ARG ARTIFACT_DIR=/dist
# Docker run environment
ENV SOURCE_DIR=/jellyfin
ENV ARTIFACT_DIR=/dist
ENV DEB_BUILD_OPTIONS=noddebs
ENV ARCH=amd64
ENV IS_DOCKER=YES

# Prepare Debian build environment
RUN apt-get update -yqq \
  && apt-get install -yqq --no-install-recommends \
    apt-transport-https debhelper gnupg devscripts build-essential mmv

# Prepare the cross-toolchain
RUN dpkg --add-architecture armhf \
  && apt-get update -yqq \
  && apt-get install -yqq --no-install-recommends cross-gcc-dev \
  && TARGET_LIST="armhf" cross-gcc-gensource 8 \
  && cd cross-gcc-packages-amd64/cross-gcc-8-armhf \
  && apt-get install -yqq --no-install-recommends\
    gcc-8-source libstdc++-8-dev-armhf-cross \
    binutils-aarch64-linux-gnu bison flex libtool gdb \
    sharutils netbase libmpc-dev libmpfr-dev libgmp-dev \
    systemtap-sdt-dev autogen expect chrpath zlib1g-dev \
    zip binutils-arm-linux-gnueabihf libc6-dev:armhf \
    linux-libc-dev:armhf libgcc1:armhf libcurl4-openssl-dev:armhf \
    libfontconfig1-dev:armhf libfreetype6-dev:armhf libssl-dev:armhf \
    liblttng-ust0:armhf libstdc++-8-dev:armhf

# Link to build script
RUN ln -sf ${SOURCE_DIR}/deployment/build.debian.armhf /build.sh

VOLUME ${SOURCE_DIR}/

VOLUME ${ARTIFACT_DIR}/

ENTRYPOINT ["/build.sh"]