aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbuild.py2
-rw-r--r--docker/Dockerfile3
2 files changed, 2 insertions, 3 deletions
diff --git a/build.py b/build.py
index ad0f427..0f75b34 100755
--- a/build.py
+++ b/build.py
@@ -566,7 +566,7 @@ build_type = args.build_type
build_arch = args.build_arch
build_version = args.build_version
-if build_type not in ["portable", "docker"] and not build_arch:
+if build_type not in ["portable", "docker", "nuget"] and not build_arch:
log(f"Error: You must specify an architecture for build platform {build_type}")
exit(1)
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 80f3924..612d75b 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -110,8 +110,7 @@ COPY --from=qemu /usr/bin/* /usr/bin
ENV HEALTHCHECK_URL=http://localhost:8096/health
# Default environment variables for the Jellyfin invocation
-ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT="1" \
- DEBIAN_FRONTEND="noninteractive" \
+ENV DEBIAN_FRONTEND="noninteractive" \
LC_ALL="en_US.UTF-8" \
LANG="en_US.UTF-8" \
LANGUAGE="en_US:en" \
bgstack15