You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using pixi as a simple caching tool to run tasks in CI. For one of the tasks I use an alpine-based docker image with inkscape (linuxserver/inkscape) because that one isn't available on conda. Since this is alpine, glibc is not available, however I also don't need to install any packages in the environment that runs the task.
So far this works, with the relevant part of the configuration looking as follows:
Note that this requires an ugly hack: specifyin unix virtual package as a placeholder for libc. This doesn't cause any problems because the task doesn't use libc, but I'm wondering if it is possible to implement this cleaner. Does anyone have an idea?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I am using pixi as a simple caching tool to run tasks in CI. For one of the tasks I use an alpine-based docker image with inkscape (linuxserver/inkscape) because that one isn't available on conda. Since this is alpine, glibc is not available, however I also don't need to install any packages in the environment that runs the task.
So far this works, with the relevant part of the configuration looking as follows:
Note that this requires an ugly hack: specifyin
unix
virtual package as a placeholder for libc. This doesn't cause any problems because the task doesn't use libc, but I'm wondering if it is possible to implement this cleaner. Does anyone have an idea?Beta Was this translation helpful? Give feedback.
All reactions