Skip to content

Commit

Permalink
Split run statement for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-l-p authored Dec 6, 2023
1 parent 0f736b9 commit 39b2b30
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,14 @@ RUN mamba init bash
RUN mamba config --set always_yes yes --set changeps1 no
RUN mamba update -q conda
RUN mamba config --set auto_activate_base false
RUN mamba env create -f /sharpy_dir/utils/environment.yml && mamba clean -afy && \
find /mamba/ -follow -type f -name '*.a' -delete && \
find /mamba/ -follow -type f -name '*.pyc' -delete && \
find /mamba/ -follow -type f -name '*.js.map' -delete
#RUN mamba env create -f /sharpy_dir/utils/environment.yml && mamba clean -afy && \
# find /mamba/ -follow -type f -name '*.a' -delete && \
# find /mamba/ -follow -type f -name '*.pyc' -delete && \
# find /mamba/ -follow -type f -name '*.js.map' -delete
RUN mamba env create -f /sharpy_dir/utils/environment.yml && mamba clean -afy
RUN find /mamba/ -follow -type f -name '*.a' -delete
RUN find /mamba/ -follow -type f -name '*.pyc' -delete
RUN find /mamba/ -follow -type f -name '*.js.map' -delete

#COPY /utils/docker/* /root/
RUN ln -s /sharpy_dir/utils/docker/* /root/
Expand Down

0 comments on commit 39b2b30

Please sign in to comment.