Skip to content
Snippets Groups Projects
Commit 43491cad authored by Charlotte Hausman's avatar Charlotte Hausman
Browse files

fix directory creation in pex dockerfile

parent 0b3b26af
No related branches found
No related tags found
Loading
Pipeline #8237 failed
......@@ -96,6 +96,12 @@ def check_processing_dir(location: str) -> bool:
def ensure_correct_directory(settings: dict) -> str:
"""
Ensure CARTA will start in the correct directory
:param settings: settings dict
:return:
"""
directory = settings["data_location"]
logger.info(f"Current working directory: {os.getcwd()}")
......
......@@ -2,6 +2,8 @@ FROM centos/python-38-centos7:20210726-fad62e9
USER root
Run mkdir /ci
WORKDIR /ci
COPY ./ci/bin /ci
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment