Skip to content
This repository was archived by the owner on May 7, 2024. It is now read-only.
This repository was archived by the owner on May 7, 2024. It is now read-only.

Couldn't find a valid ICU package installed on the system. Set the configuration flag System.Globalization.Invariant to true if you want to run with no globalization support. #276

@mattAWL

Description

@mattAWL

Hi all
I was very curious to use the mssql-scripter, so I created a docker container image containing this tool.
But when I want to run a backup, there is following exception thrown:
(I also get the same error when I replace the environment variables with explicit values)

root@somecontainerg:/# mssql-scripter -S ${MSSQL_HOST} -d ${MSSQL_DATABASE} -U ${MSSQL_USER} -P ${MSSQL_PASSWORD} --schema-and-data  > /tmp/dump.sql
FailFast:
Couldn't find a valid ICU package installed on the system. Set the configuration flag System.Globalization.Invariant to true if you want to run with no globalization support.

   at System.Environment.FailFast(System.String)
   at System.Globalization.GlobalizationMode.GetGlobalizationInvariantMode()
   at System.Globalization.GlobalizationMode..cctor()
   at System.Globalization.CultureData.CreateCultureWithInvariantData()
   at System.Globalization.CultureData.get_Invariant()
   at System.Globalization.CultureInfo..cctor()
   at System.StringComparer..cctor()
   at System.AppDomain.InitializeCompatibilityFlags()
   at System.AppDomain.Setup(System.Object)

I already tried to add the libicu-dev package to my Dockerfile:

# add package to fix ICU
RUN apt-get install -y libicu-dev

My Dockerfile:

FROM ubuntu:22.10
LABEL maintainer="xxx"

RUN apt-get update -y && apt-get install -y python3 && apt-get install -y python3-pip && apt-get install -y curl
#add fix for python: command not found
RUN apt-get install -y python-is-python3
# add package to fix ICU
RUN apt-get install -y libicu-dev
RUN pip3 install awscli
RUN pip3 install mssql-scripter

ADD run.sh run.sh
ADD backup-s3.sh backup-s3.sh
ADD backup-local.sh backup-local.sh

CMD ["sh", "run.sh"]

What could the issue here?
Do I also need to add .net runtime inside the docker container?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions