Skip to content

Commit 3562481

Browse files
committed
Fix Docker build: add danagroup channel to micromamba create
The arc_env creation inside Docker couldn't solve for Python 3.14 because the danagroup channel (needed for OpenBabel) wasn't passed to micromamba. Also removed the redundant python=3.14 pin since it's already in environment.yml.
1 parent 69b2b13 commit 3562481

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ RUN micromamba run -n rmg_env bash -c "\
5555
"
5656

5757
WORKDIR /home/mambauser/Code/ARC
58-
RUN micromamba create -y -v -n arc_env python=3.14 -f environment.yml && \
58+
RUN micromamba create -y -v -n arc_env -c conda-forge -c danagroup -f environment.yml && \
5959
micromamba install -y -v -n arc_env -c conda-forge pytest && \
6060
micromamba clean --all -f -y
6161

0 commit comments

Comments
 (0)