Skip to content

Commit

Permalink
added Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor Perez Meza committed Oct 17, 2024
1 parent 2965594 commit 969a954
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
4 changes: 1 addition & 3 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
.git
pip_macs
test_data
.gitignore
old
LICENSE
requirements.txt
Dockerfile
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
pip_macs
test_data
test_scripts
old
.gitignore

# Byte-compiled / optimized / DLL files
__pycache__/
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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 . .

0 comments on commit 969a954

Please sign in to comment.