Closed mfitz closed 2 years ago
how i can download the latest image to work on the problem?
i've tried the cmd above but it returned authentication error
docker run -it --entrypoint /bin/bash 758645626094.dkr.ecr.eu-west-1.amazonaws.com/elara
Unable to find image '758645626094.dkr.ecr.eu-west-1.amazonaws.com/elara:latest' locally
docker: Error response from daemon: Head "https://758645626094.dkr.ecr.eu-west-1.amazonaws.com/v2/elara/manifests/latest": no basic auth credentials.
See 'docker run --help'.
how i can download the latest image to work on the problem?
i've tried the cmd above but it returned authentication error
docker run -it --entrypoint /bin/bash 758645626094.dkr.ecr.eu-west-1.amazonaws.com/elara Unable to find image '758645626094.dkr.ecr.eu-west-1.amazonaws.com/elara:latest' locally docker: Error response from daemon: Head "https://758645626094.dkr.ecr.eu-west-1.amazonaws.com/v2/elara/manifests/latest": no basic auth credentials. See 'docker run --help'.
Hi @ahmednreldin
Sorry for the late reply. You won't be able to pull that image because it's currently private inside our ECR repo, but you can build the image locally directly from the Dockerfile
(docker build -t elara-local .
should do it) once you've cloned the GitHub repo.
The warning has been fixed by this commit
When I grabbed the latest Elara Docker image and ran the CLI from inside the container I saw the following warning:
Some detail on a fix can be found here. However,
pip install python-Levenshtein
fails inside the container, apparently due to the lack of agcc
installation:The solution is probably to install gcc and
pip install python-Levenshtein
in the Docker image . This may also improve the performance of any fuzzy matching operations in Elara by having them use faster distancing algorithm implementations.