aboutsummaryrefslogtreecommitdiff
path: root/portable/Dockerfile
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2024-02-16 03:31:22 -0500
committerJoshua M. Boniface <joshua@boniface.me>2024-02-16 03:31:22 -0500
commitfe8853a4660efeaff7106f73622d3c91617fd6aa (patch)
tree181ae424646011aa15ba8dfc9fcd8121efeff435 /portable/Dockerfile
parentReorder Debian releases (diff)
downloadjellyfin-packaging-fe8853a4660efeaff7106f73622d3c91617fd6aa.tar.gz
jellyfin-packaging-fe8853a4660efeaff7106f73622d3c91617fd6aa.tar.bz2
jellyfin-packaging-fe8853a4660efeaff7106f73622d3c91617fd6aa.zip
Make gzip explicit in archive types
Might add "tarxz" or similar some day, so make it explicit.
Diffstat (limited to 'portable/Dockerfile')
-rw-r--r--portable/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/portable/Dockerfile b/portable/Dockerfile
index 096192a..afe33d7 100644
--- a/portable/Dockerfile
+++ b/portable/Dockerfile
@@ -19,7 +19,7 @@ ENV SOURCE_DIR=/jellyfin
ENV ARTIFACT_DIR=/dist
ENV TYPE=${PACKAGE_TYPE}
ENV VERSION=${PACKAGE_VERSION}
-ENV ARCHIVE_TYPES=tar
+ENV ARCHIVE_TYPES=targz
# Prepare Debian build environment
RUN apt-get update -y \
bgstack15