From 4f1fcc86f8050ef79b5cc1bbb34acb3dd5ce24d3 Mon Sep 17 00:00:00 2001 From: Sylvester Joosten <sjoosten@anl.gov> Date: Tue, 4 Aug 2020 20:55:14 -0500 Subject: [PATCH] added container_dev shortcut --- .gitignore | 6 ++++++ containers/release/Dockerfile.in | 3 +++ deploy.py | 1 + 3 files changed, 10 insertions(+) diff --git a/.gitignore b/.gitignore index 4fdd9fd10..4ab0868aa 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,9 @@ __pycache__/ *.py[cod] *$py.class .ipynb_checkpoints + +#build dirs +build +BUILD +debug +DEBUG diff --git a/containers/release/Dockerfile.in b/containers/release/Dockerfile.in index 8134a34de..4ffe88b41 100644 --- a/containers/release/Dockerfile.in +++ b/containers/release/Dockerfile.in @@ -53,6 +53,9 @@ COPY eic-shell /usr/local/bin/eic-shell COPY eic-env.sh /etc/eic-env.sh COPY eic-env.sh /etc/profile.d/z10_eic-env.sh +## also make sure we have the older container_dev command available +COPY eic-shell /usr/local/bin/container_dev + ## Setup fresh bashrc, useful for singularity COPY bashrc /etc/bash.bashrc COPY bashrc /root/.bashrc diff --git a/deploy.py b/deploy.py index 2c838b608..dbc648021 100755 --- a/deploy.py +++ b/deploy.py @@ -25,6 +25,7 @@ PROJECT_NAME='eic_container' IMAGE_ROOT='eic' PROGRAMS = ['eic-shell', + 'container_dev', 'root', 'ipython'] -- GitLab