Found the answer myself. I had to correctly set the container locale.
For example:
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
Hi everybody,
does anybody have tried to build Wicket inside a Docker container? I'm
trying with one of the official Maven images:
https://hub.docker.com/_/maven/. However, I still get failures with
test MinifiedAwareResourceReferenceTest:
Failed tests:
MinifiedAwareResourceReferenceTest.noMinifiedResourceAvailable:82->Assert.assertEquals:631->Assert.assertEquals:645->Assert.failNotEquals:834->Assert.fail:88
expected:<3> but was:<2>
ResourceNameIteratorTest.noDuplicateVariations:163->Assert.assertEquals:631->Assert.assertEquals:645->Assert.failNotEquals:834->Assert.fail:88
expected:<6> but was:<4>
Does anybody have any advice? Have you encountered this problem with
Docker?
Thank you.