diff options
author | Joshua M. Boniface <joshua@boniface.me> | 2024-02-16 01:14:03 -0500 |
---|---|---|
committer | Joshua M. Boniface <joshua@boniface.me> | 2024-02-16 01:14:03 -0500 |
commit | 1c936530c438a11d1c672e68049db7a93986ec6f (patch) | |
tree | d644488161c3bc21498596b633c0ce47c1a1d8f1 /docker/Dockerfile | |
parent | Fix spelling mistake (diff) | |
download | jellyfin-packaging-1c936530c438a11d1c672e68049db7a93986ec6f.tar.gz jellyfin-packaging-1c936530c438a11d1c672e68049db7a93986ec6f.tar.bz2 jellyfin-packaging-1c936530c438a11d1c672e68049db7a93986ec6f.zip |
Add JELLYFIN_VERSION to all build-time envs
Diffstat (limited to 'docker/Dockerfile')
-rw-r--r-- | docker/Dockerfile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 705935f..a8ab0a1 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -23,6 +23,9 @@ ARG QEMU_ARCH # Base Image archiecture (amd64, arm64v8, arm32v7), set by build script ARG IMAGE_ARCH +# Jellyfin version +ARG JELLYFIN_VERSION + # # Build the web artifacts # @@ -31,6 +34,9 @@ FROM node:${NODEJS_VERSION}-alpine as web ARG SOURCE_DIR=/src ARG ARTIFACT_DIR=/web +ARG JELLYFIN_VERSION +ENV JELLYFIN_VERSION=${JELLYFIN_VERSION} + RUN apk add \ autoconf \ g++ \ |