diff options
| author | Cody Robibero <cody@robibe.ro> | 2024-03-18 08:42:07 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-18 10:42:07 -0400 |
| commit | 78b53a60b4018b25c64a2477408c10144a750252 (patch) | |
| tree | c193fcd988536af79ea3afb7f790d411128c4ba1 /deployment/Dockerfile.portable | |
| parent | 4bcabbde7b8c1a9a0ca7a89ab3e2b0de390393f5 (diff) | |
Remove legacy build utilities (#11162)
Diffstat (limited to 'deployment/Dockerfile.portable')
| -rw-r--r-- | deployment/Dockerfile.portable | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/deployment/Dockerfile.portable b/deployment/Dockerfile.portable deleted file mode 100644 index 0ab1b19147..0000000000 --- a/deployment/Dockerfile.portable +++ /dev/null @@ -1,32 +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 IS_DOCKER=YES - -# Prepare Debian build environment -RUN apt-get update -yqq \ - && apt-get install --no-install-recommends -yqq \ - debhelper gnupg devscripts \ - mmv libcurl4-openssl-dev libfontconfig1-dev \ - libfreetype6-dev libssl-dev libssl3 liblttng-ust1 \ - && apt-get clean autoclean -yqq \ - && apt-get autoremove -yqq \ - && rm -rf /var/lib/apt/lists/* - -# Link to docker-build script -RUN ln -sf ${SOURCE_DIR}/deployment/build.portable /build.sh - -VOLUME ${SOURCE_DIR}/ - -VOLUME ${ARTIFACT_DIR}/ - -ENTRYPOINT ["/build.sh"] |
