Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ci/docker/conda-cpp.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ RUN /arrow/ci/scripts/install_minio.sh latest /opt/conda
COPY ci/conda_env_cpp.txt \
ci/conda_env_gandiva.txt \
/arrow/ci/
RUN mamba install \
RUN mamba install -q -y \
--file arrow/ci/conda_env_cpp.txt \
--file arrow/ci/conda_env_gandiva.txt \
compilers \
Expand Down
2 changes: 1 addition & 1 deletion ci/docker/conda-integration.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ ARG go=1.15

# Install Archery and integration dependencies
COPY ci/conda_env_archery.txt /arrow/ci/
RUN mamba install -q \
RUN mamba install -q -y \
--file arrow/ci/conda_env_archery.txt \
"python>=3.7" \
numpy \
Expand Down
2 changes: 1 addition & 1 deletion ci/docker/conda-python-hdfs.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ FROM ${repo}:${arch}-conda-python-${python}

ARG jdk=8
ARG maven=3.5
RUN mamba install -q \
RUN mamba install -q -y \
maven=${maven} \
openjdk=${jdk} \
pandas && \
Expand Down
2 changes: 1 addition & 1 deletion ci/docker/conda-python-jpype.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ FROM ${repo}:${arch}-conda-python-${python}

ARG jdk=11
ARG maven=3.6
RUN mamba install -q \
RUN mamba install -q -y \
maven=${maven} \
openjdk=${jdk} \
jpype1 && \
Expand Down
2 changes: 1 addition & 1 deletion ci/docker/conda-python-kartothek.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ARG python=3.8
FROM ${repo}:${arch}-conda-python-${python}

# install kartothek dependencies from conda-forge
RUN mamba install -c conda-forge -q \
RUN mamba install -c conda-forge -q -y \
attrs \
click \
cloudpickle \
Expand Down
2 changes: 1 addition & 1 deletion ci/docker/conda-python-spark.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ FROM ${repo}:${arch}-conda-python-${python}
ARG jdk=8
ARG maven=3.5

RUN mamba install -q \
RUN mamba install -q -y \
openjdk=${jdk} \
maven=${maven} \
pandas && \
Expand Down
2 changes: 1 addition & 1 deletion ci/docker/conda-python-turbodbc.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
rm -rf /var/lib/apt/lists/*

# install turbodbc dependencies from conda-forge
RUN mamba install -c conda-forge -q \
RUN mamba install -c conda-forge -q -y \
pybind11 \
pytest-cov \
mock \
Expand Down
2 changes: 1 addition & 1 deletion ci/docker/conda-python.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ARG python=3.8
COPY ci/conda_env_python.txt \
ci/conda_env_sphinx.txt \
/arrow/ci/
RUN mamba install -q \
RUN mamba install -q -y \
--file arrow/ci/conda_env_python.txt \
--file arrow/ci/conda_env_sphinx.txt \
$([ "$python" == "3.7" ] && echo "pickle5") \
Expand Down