From 969a9543b5076017b85e94b0f68ea74f000037ab Mon Sep 17 00:00:00 2001 From: Victor Perez Meza Date: Thu, 17 Oct 2024 11:39:43 +0200 Subject: [PATCH] added Dockerfile --- .dockerignore | 4 +--- .gitignore | 5 ++--- Dockerfile | 4 ++-- 3 files changed, 5 insertions(+), 8 deletions(-) diff --git a/.dockerignore b/.dockerignore index 78da96c..2afde73 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,7 +1,5 @@ .git -pip_macs -test_data .gitignore +old LICENSE -requirements.txt Dockerfile diff --git a/.gitignore b/.gitignore index 30c6e57..da47ac6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,5 @@ -pip_macs -test_data -test_scripts +old +.gitignore # Byte-compiled / optimized / DLL files __pycache__/ diff --git a/Dockerfile b/Dockerfile index f475571..f76a267 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM mambaorg/micromamba:latest -COPY --chown=$MAMBA_USER:$MAMBA_USER conda_environment.yml /tmp/env.yaml +COPY --chown=$MAMBA_USER:$MAMBA_USER environment.yml /tmp/env.yaml RUN micromamba install -y -n base -f /tmp/env.yaml && \ micromamba clean --all --yes ENV PATH="${PATH}:/opt/conda/bin" -WORKDIR /stack_macsima +WORKDIR /staging COPY . . \ No newline at end of file