Skip to content

Commit

Permalink
Update dockerfile_cpu
Browse files Browse the repository at this point in the history
  • Loading branch information
jennyfothergill committed May 3, 2024
1 parent 8c29526 commit 11aa31b
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions containers/dockerfile_cpu
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
FROM mambaorg/micromamba:0.15.2
FROM mambaorg/micromamba:1.4.1

COPY --chown=micromamba:micromamba environment.yml /tmp/env.yml
ARG VERSION

RUN micromamba install -y -n base -f /tmp/env.yml && \
micromamba install -y -n base -c conda-forge grits && \
ENV PYTHONUNBUFFERED=1

COPY --chown=$MAMBA_USER:$MAMBA_USER environment.yml /tmp/env.yml

RUN micromamba install -y -n base "grits==$VERSION" -f /tmp/env.yml && \
micromamba clean --all --yes

ARG MAMBA_DOCKERFILE_ACTIVATE=1

0 comments on commit 11aa31b

Please sign in to comment.