Skip to content

Commit c42e1e6

Browse files
committed
Remove Docker BuildKit requirement
1 parent 9d793fa commit c42e1e6

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

build_artifacts/v2/v2.6/v2.6.0/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,7 @@ ARG CONDA_OVERRIDE_CUDA=$CUDA_MAJOR_MINOR_VERSION
9090

9191
# Make sure that $ENV_IN_FILENAME and $PINNED_ENV_IN_FILENAME has a newline at the end before the `tee` command runs.
9292
# Otherwise, nasty things will happen.
93-
RUN --mount=type=bind,source=./patched-packages,target=/tmp/patched-packages \
94-
if [[ -z $ARG_BASED_ENV_IN_FILENAME ]] ; \
93+
RUN if [[ -z $ARG_BASED_ENV_IN_FILENAME ]] ; \
9594
then echo 'No ARG_BASED_ENV_IN_FILENAME passed' ; \
9695
else envsubst < /tmp/$ARG_BASED_ENV_IN_FILENAME | tee --append /tmp/$ENV_IN_FILENAME ; \
9796
fi && \

template/v2/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,7 @@ ARG CONDA_OVERRIDE_CUDA=$CUDA_MAJOR_MINOR_VERSION
9090

9191
# Make sure that $ENV_IN_FILENAME and $PINNED_ENV_IN_FILENAME has a newline at the end before the `tee` command runs.
9292
# Otherwise, nasty things will happen.
93-
RUN --mount=type=bind,source=./patched-packages,target=/tmp/patched-packages \
94-
if [[ -z $ARG_BASED_ENV_IN_FILENAME ]] ; \
93+
RUN if [[ -z $ARG_BASED_ENV_IN_FILENAME ]] ; \
9594
then echo 'No ARG_BASED_ENV_IN_FILENAME passed' ; \
9695
else envsubst < /tmp/$ARG_BASED_ENV_IN_FILENAME | tee --append /tmp/$ENV_IN_FILENAME ; \
9796
fi && \

0 commit comments

Comments
 (0)