-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes many miscellaneous bugs. (#122)
* Remove the Intel channel from Python, Numpy etc. because issues only arise with `pip` installs, not `conda` installs. The Intel channel was causing unnecessary overhead and issues. * Make the rules for lockfiles more flexible. * Fix accidental CUDA version change to 11.7 back to 11.8. * Remove unnecessary `apt` requirements. * Remove HOST_NAME variable. * Cleanup of the docker-compose.yaml file to make services easier to see. Most settings have been moved to the `base` service. Also got rid of the $HOST_NAME variable. * Set the `SHELL` environment variable to an empty string as it was previously fixed to `/bin/bash`. This fixes the color problem in new `tmux` shells and prevents possible incompatibilities in Docker `RUN` instructions.
- Loading branch information
1 parent
bf7b3c1
commit febf0e9
Showing
8 changed files
with
71 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
libjemalloc-dev | ||
sudo | ||
tmux | ||
tzdata | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
# Example `apt` requirements file. | ||
# `sudo` and `zsh` are required packages. | ||
# Example `apt` requirements file. `sudo` and `zsh` are required packages. | ||
at | ||
numactl | ||
sudo | ||
watchman # For pyre-check only. | ||
zsh |