Skip to content

Commit

Permalink
Fix curl to always be verbose for debugging. (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
veritas9872 authored Apr 9, 2023
1 parent 4975164 commit 0ed1758
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ FROM ${CURL_IMAGE} AS curl-conda

ARG CONDA_URL
WORKDIR /tmp/conda
RUN curl -fvSL -o /tmp/conda/miniconda.sh ${CONDA_URL}
RUN curl -fvL -o /tmp/conda/miniconda.sh ${CONDA_URL}

########################################################################
FROM ${BUILD_IMAGE} AS install-conda
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ COMPOSE_FILE = ${COMPOSE_PATH}/docker-compose

${COMPOSE_FILE}:
mkdir -p "${COMPOSE_PATH}"
curl -fvSL "${COMPOSE_URL}" -o "${COMPOSE_FILE}"
curl -fvL "${COMPOSE_URL}" -o "${COMPOSE_FILE}"
chmod +x "${COMPOSE_FILE}"

install-compose: ${COMPOSE_FILE}
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/simple.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ COPY --link ../reqs/apt-simple.requirements.txt /tmp/apt/requirements.txt

ARG CONDA_URL
WORKDIR /tmp/conda
RUN curl -fvSL -o /tmp/conda/miniconda.sh ${CONDA_URL} && \
RUN curl -fvL -o /tmp/conda/miniconda.sh ${CONDA_URL} && \
/bin/bash /tmp/conda/miniconda.sh -b -p /opt/conda && \
printf "channels:\n - conda-forge\n - nodefaults\n" > /opt/conda/.condarc
WORKDIR /
Expand Down

0 comments on commit 0ed1758

Please sign in to comment.