Skip to content

Commit 42b1d44

Browse files
committed
Add missing COPY pinned statements
1 parent b6f0965 commit 42b1d44

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@ ARG MINIFORGE_VER=notset
6565

6666
FROM condaforge/miniforge3:${MINIFORGE_VER} AS miniforge-upstream
6767

68+
SHELL ["/bin/bash", "-euo", "pipefail", "-c"]
69+
70+
COPY pinned /opt/conda/conda-meta/pinned
71+
6872
RUN \
6973
--mount=type=bind,source=scripts,target=/tmp/build-scripts \
7074
<<EOF
@@ -94,6 +98,8 @@ EOF
9498
# Ownership & permissions based on https://docs.anaconda.com/anaconda/install/multi-user/#multi-user-anaconda-installation-on-linux
9599
COPY --from=miniforge-upstream --chown=root:conda --chmod=770 /opt/conda /opt/conda
96100

101+
COPY pinned /opt/conda/conda-meta/pinned
102+
97103
RUN \
98104
--mount=type=bind,source=scripts,target=/tmp/build-scripts \
99105
<<EOF

0 commit comments

Comments
 (0)