-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installation of Unicon in Linux Alpine #209
Comments
Hi Srujan, |
iirc pypi does not allow whl file upload that is non gnu linux (manylinux1) or macos builds. so there is no whl file for unicon for alpine linux in pypi hence why the install fails |
Any solution in that case? |
Hi @eddysanoli, Can you please check again we have added the package for Linux Alpine |
Hi , |
Hi , |
Hi , |
Hi , |
Hello. Recently I've been trying to optimizing my containerized Python application by switching from Python's buster base image, to a Python Alpine image. All of my dependencies are installed during build time by using Poetry. I have a
pyproject.toml
file that lists all of my dependencies and installs them when I usepoetry install
. One of my dependencies is the Meraki Dashboard API package. That one doesn't give me any problems, but unfortunately it depends onunicon
, hence why Im here. Whenever Poetry runs intounicon
, it spits out the following error:I've checked that the version is correct, that the docker container has the correct dependencies, even that my connection to the internet is stable. No matter what I do, I cannot get my alpine base image to properly install unicon. Is there any specific way that I need to know about? I found in a stackoverflow post, that alpine is kind of unreliable when it comes to Python packages that serve as wrappers for C or C++ code, but no other package is giving me this error. Im pretty sure it was my move to alpine, but I would appreciate the help if anyone could provide some advice into how I could get the project up and going with an alpine image.
Here's my dockerfile code for reference:
The text was updated successfully, but these errors were encountered: