aboutsummaryrefslogtreecommitdiff
path: root/deployment/Dockerfile.debian.armhf
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2024-03-18 08:42:07 -0600
committerGitHub <noreply@github.com>2024-03-18 10:42:07 -0400
commit78b53a60b4018b25c64a2477408c10144a750252 (patch)
treec193fcd988536af79ea3afb7f790d411128c4ba1 /deployment/Dockerfile.debian.armhf
parent4bcabbde7b8c1a9a0ca7a89ab3e2b0de390393f5 (diff)
Remove legacy build utilities (#11162)
Diffstat (limited to 'deployment/Dockerfile.debian.armhf')
-rw-r--r--deployment/Dockerfile.debian.armhf47
1 files changed, 0 insertions, 47 deletions
diff --git a/deployment/Dockerfile.debian.armhf b/deployment/Dockerfile.debian.armhf
deleted file mode 100644
index b1fa6cee52..0000000000
--- a/deployment/Dockerfile.debian.armhf
+++ /dev/null
@@ -1,47 +0,0 @@
-ARG DOTNET_VERSION=8.0
-
-FROM mcr.microsoft.com/dotnet/sdk:${DOTNET_VERSION}-bookworm-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 --no-install-recommends -yqq \
- debhelper gnupg devscripts build-essential mmv
-
-# Prepare the cross-toolchain
-RUN dpkg --add-architecture armhf \
- && apt-get update -yqq \
- && apt-get install --no-install-recommends -yqq cross-gcc-dev \
- && TARGET_LIST="armhf" cross-gcc-gensource 12 \
- && cd cross-gcc-packages-amd64/cross-gcc-12-armhf \
- && apt-get install --no-install-recommends -yqq \
- gcc-12-source libstdc++-12-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-ust1:armhf libstdc++-12-dev:armhf \
- && apt-get clean autoclean -yqq \
- && apt-get autoremove -yqq \
- && rm -rf /var/lib/apt/lists/*
-
-# Link to build script
-RUN ln -sf ${SOURCE_DIR}/deployment/build.debian.armhf /build.sh
-
-VOLUME ${SOURCE_DIR}/
-
-VOLUME ${ARTIFACT_DIR}/
-
-ENTRYPOINT ["/build.sh"]