Skip to content

Commit 593f038

Browse files
committed
Fix zarr installation by moving it to pip dependencies in environment.yml
1 parent 29e3f04 commit 593f038

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ RUN conda install -c conda-forge conda-pack
2323

2424
# Use conda-pack to create a standalone enviornment
2525
# in /venv:
26-
RUN conda-pack -n artist -o /tmp/env.tar && \
26+
RUN conda-pack -n artist -o /tmp/env.tar --ignore-missing-files && \
2727
mkdir /venv && cd /venv && tar xf /tmp/env.tar && \
2828
rm /tmp/env.tar
2929

docker/environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ channels:
66
- bioconda
77
dependencies:
88
- numpy>=1.26.0
9-
- zarr>=3.0.0
109
- Pillow
1110
- flask
1211
- waitress
@@ -33,6 +32,7 @@ dependencies:
3332
- estimagic
3433
- pyvips
3534
- pip:
35+
- zarr>=3.0.0
3636
- openslide-python
3737
- opencv-python-headless
3838
- synapseclient

0 commit comments

Comments
 (0)