Skip to content

Commit e0eea79

Browse files
committed
Some fixes for package installation
1 parent 6f5f11a commit e0eea79

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ RUN \
2222
RUN \
2323
conda config --set channel_priority strict \
2424
&& conda install -yq -c conda-forge \
25-
'gdal==3.10' \
26-
'geoviews==1.14' \
27-
'geopandas==1.0' \
25+
'gdal==3.12' \
26+
'geoviews==1.15' \
27+
'geopandas==1.1' \
2828
&& conda clean -yaf || echo 'Failed to clear Conda cache' \
2929
&& fix-permissions "${CONDA_DIR}"
3030

@@ -33,8 +33,8 @@ COPY uv.lock pyproject.toml ./
3333
RUN \
3434
fix-permissions "/home/${NB_USER}" \
3535
&& curl -LsSf $UV_INSTALLER | sh \
36-
&& uv add "pyinaturalist@${PACKAGE_VERSION}" \
37-
&& uv sync \
36+
&& uv add --no-sync "pyinaturalist==${PACKAGE_VERSION}" \
37+
&& uv sync --no-install-project \
3838
&& uv cache clean \
3939
&& rm uv.lock pyproject.toml \
4040
&& fix-permissions "${CONDA_DIR}" \

0 commit comments

Comments
 (0)