-
-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adjust Dockerfile & deployment use micromamba
* Use micromamba not conda in Dockerfile CMD, also use pip install --no-deps * Use micromamba not conda in command passed to build container * Use default mambauser rather than catalyst in docker container * Remove --no-capture-output which isn't supported by micromamba. Is this a problem? * Remove uninterpolated vars in .env and more --no-capture-output * Separate ETL and pytest commands. * Stop trying to run tests in parallel. Sigh. * Add google cloud sdk to conda environment. * Install Google Cloud SDK from conda-forge. * Add back in the making of required directories. Oops. * Attempt to have micromamba run pass through output
- Loading branch information
1 parent
9767c39
commit 4e5589f
Showing
13 changed files
with
4,189 additions
and
20,114 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
HOST_PUDL_IN=./pudl_in | ||
HOST_PUDL_OUT=./pudl_out | ||
CONTAINER_HOME=/home/catalyst | ||
PUDL_INPUT=/home/catalyst/pudl_work/data | ||
PUDL_OUTPUT=/home/catalyst/pudl_work/output | ||
DAGSTER_HOME=/home/catalyst/pudl_work/dagster_home | ||
CONDA_PREFIX=/home/catalyst/env | ||
PUDL_SETTINGS_YML=/home/catalyst/src/pudl/package_data/settings/etl_full.yml | ||
LOGFILE=/home/catalyst/pudl_work/output/pudl-etl.log | ||
CONDA_RUN="conda run --no-capture-output --prefix /home/catalyst/env" | ||
CONTAINER_HOME=/home/mambauser | ||
PUDL_INPUT=/home/mambauser/pudl_work/input | ||
PUDL_OUTPUT=/home/mambauser/pudl_work/output | ||
DAGSTER_HOME=/home/mambauser/pudl_work/dagster_home | ||
CONDA_PREFIX=/home/mambauser/env | ||
PUDL_SETTINGS_YML=/home/mambauser/src/pudl/package_data/settings/etl_full.yml | ||
LOGFILE=/home/mambauser/pudl_work/output/pudl-etl.log | ||
CONDA_RUN="micromamba run --prefix /home/mambauser/env --attach ''" | ||
GCS_CACHE=gs://zenodo-cache.catalyst.coop |
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
Oops, something went wrong.