-
Notifications
You must be signed in to change notification settings - Fork 1
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
Build a python environment within the docker image for the viz workflow #30
Comments
I integrated setup for a conda env in the container, along with a user with the same permissions as me on the Datateam server. See issue#39. Dockerfile
The build for this image worked well until the very end, when I got an error: I included the line |
The following dockerfile built with no warnings or errors. This is in the pushed version 0.2.5 of the package. Dockerfile
|
This issue has been resolved, and can be re-opened if a deep dive determines that the way it was achieved in the Dockerfile could be improved or generalized. |
Initial progress in the docker & kubernetes workflow includes creating a first draft of the Dockerfile that installs the requirements for the workflow from a
requirements.txt
file that is copied into the container and run:When I build with a Dockerfile that installs requirements with that approach, a warning is output:
The workflow can be improved by creating a new environment within the container and then installing the requirements into that.
The feature detection team working on MAPLE developed a draft of their Dockerfile that creates a conda environment and installs the requirements:
MAPLE Dockerfile
One consideration is whether we want to use conda or virtualenv. Code that may be a starting point for for creating a venv within the container:
create venv within Dockerfile
This issue is a sub-task towards the ultimate goal of issue#1
The text was updated successfully, but these errors were encountered: