Primes v1.2.0 #14
moebius-rex
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Release notes
Primes v1.2.0 introduces Go language implementations of the Sieve of Eratosthenes algorithm to the Primes project, including:
cgo
to implement the algorithm by calling functions in the existing C shared library implementation,/usr/local/lib/libcsieve.so
Other tweaks in this release include:
/usr/local
setup.sh
now checks that/usr/local
is writable, and if not, displays a message to try again usingsudo
to complete the project installationTech note
As a required part of this release, Go language package installations were added to each of the Docker image configuration files provided with the project. However, this caused the Ubuntu Docker image build to hang. This turned out to be a known issue with the
tzdata
package installer's interactive dialog and can be addressed in several ways, including:ARG
, notENV
, build instruction):tzdata
package installation only:tzdata
before any other packages:All of the above options solve the problem. We chose to disable all interactive dialogs, because:
ARG
instead ofENV
means that interactive dialogs are disabled only during image builds and not while running containerstzdata
) in our Docker fileThis discussion was created from the release Primes v1.2.0.
Beta Was this translation helpful? Give feedback.
All reactions