Skip to content

Commit

Permalink
Update to lightning==2.0.0 + various fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
konstantinjdobler committed Apr 17, 2023
1 parent c8d505b commit bccc005
Show file tree
Hide file tree
Showing 13 changed files with 5,539 additions and 1,026 deletions.
9 changes: 7 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,13 @@ RUN --mount=type=cache,target=${MAMBA_ROOT_PREFIX}/pkgs,id=conda-${TARGETPLATFOR
ARG MAMBA_DOCKERFILE_ACTIVATE=1
RUN micromamba config prepend channels conda-forge --env

# Provide conda alias for micromamba
RUN echo "alias conda=micromamba" >> ~/.bashrc
# Install optional tricky pip dependencies that do not work with conda-lock
# RUN micromamba run -n research pip install example-dependency --no-deps --no-cache-dir

# provide conda alias for micromamba
USER root
RUN echo "alias conda=micromamba" >> /usr/local/bin/_activate_current_env.sh
USER $MAMBA_USER

# Use our environment as default
ENV ENV_NAME=research
Loading

0 comments on commit bccc005

Please sign in to comment.