-
Notifications
You must be signed in to change notification settings - Fork 177
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
Having a pip installable file(like requirements.txt) that can be used directly(without installing pixi or conda) inside docker environment. #2172
Comments
|
Yeah, it is just that it takes some extra effort to install a package manager inside docker container, most importantly, package managers does not do much inside docker. I was expecting that it might be a little tricky to export a requirements.txt when I am relying on conda dependencies. I am comfortable switching to pypi-dependencies, but just ouf of curiousity: |
No it won't @raceychan . There is likely a more idiomatic way to achieve what you want (not including pixi in the docker image). I recommend you have a look at the Docker example, which shows how to achieve that efficiently. Let me know how you go 😃 ! |
The docker example you provided make more sense than the ones I found, would definitely try it out! |
Problem description
I use pixi for managing my project dependencies, However, it seems redundant to Install pixi inside a docker container.
Feature Request:
Having a pip installable file(like requirements.txt) that can be used a docker environment.
I noticed that in recent version of pixi
'pixi project export' is introduced, however, AFAIK, it only exportx conda environment.yaml files, but I don't want to include conda inside my docker image, same reasons as 1,2,3 listed above.
The text was updated successfully, but these errors were encountered: