-
-
Notifications
You must be signed in to change notification settings - Fork 2
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
fix docker build #136
fix docker build #136
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #136 +/- ##
=======================================
Coverage 88.14% 88.14%
=======================================
Files 273 273
Lines 16050 16050
=======================================
Hits 14148 14148
Misses 1902 1902 ☔ View full report in Codecov by Sentry. |
Existing error:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 4 of 4 files at r1, all commit messages.
Reviewable status: all files reviewed, 1 unresolved discussion (waiting on @johnml1135 and @TaperChipmunk32)
pyproject.toml
line 62 at r1 (raw file):
networkx = "^3" charset-normalizer = "^2.1.1" urllib3 = "<2"
Unless I'm missing something, it looks like urllib3 was added to the pyproject.toml, but removed from the poetry.lock file.
717139d
to
7a16abc
Compare
Previously, mshannon-sil wrote…
That's how it was resolved. I don't know about the urllib3 issue - I just added it from the direction of @TaperChipmunk32. |
The docker images are creating now. They are all running much faster too! |
This was the error from the build in actions: "The |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 2 of 2 files at r2, 2 of 2 files at r3, all commit messages.
Reviewable status: all files reviewed, 2 unresolved discussions (waiting on @johnml1135)
dockerfile
line 66 at r3 (raw file):
RUN python -m pip install --no-deps . && rm -r /root/* ENV CLEARML_AGENT_SKIP_PYTHON_ENV_INSTALL=1 \ CLEARML_AGENT_SKIP_PIP_VENV_INSTALL=1
This environment variable CLEARML_AGENT_SKIP_PIP_VENV_INSTALL
should be unnecessary, since you're already skipping the python env install with the other environment variable, and according to the documentation it's supposed to take a path to an existing python environment rather than a boolean value: https://clear.ml/docs/latest/docs/clearml_agent/clearml_agent_env_var/
dockerfile.cpu_only
line 45 at r3 (raw file):
RUN python -m pip install --no-deps . && rm -r /root/* ENV CLEARML_AGENT_SKIP_PYTHON_ENV_INSTALL=1 \ CLEARML_AGENT_SKIP_PIP_VENV_INSTALL=1
Same comment as in the regular dockerfile.
Previously, mshannon-sil wrote…
done |
Previously, mshannon-sil wrote…
done |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 2 of 2 files at r4, all commit messages.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @johnml1135)
#135 - fix docker build
This change is