diff options
-rwxr-xr-x | build.py | 2 | ||||
-rw-r--r-- | docker/Dockerfile | 3 |
2 files changed, 2 insertions, 3 deletions
@@ -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" \ |