From 0ed175833d17f0fc19a5edac272252be84869e95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joonhyung=20Lee/=EC=9D=B4=EC=A4=80=ED=98=95?= <33523965+veritas9872@users.noreply.github.com> Date: Sun, 9 Apr 2023 18:31:46 +0900 Subject: [PATCH] Fix `curl` to always be verbose for debugging. (#114) --- Dockerfile | 2 +- Makefile | 2 +- dockerfiles/simple.Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3e6305e..705c498 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/Makefile b/Makefile index 18d95cc..6026073 100644 --- a/Makefile +++ b/Makefile @@ -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} diff --git a/dockerfiles/simple.Dockerfile b/dockerfiles/simple.Dockerfile index 5f4ae66..6da531b 100644 --- a/dockerfiles/simple.Dockerfile +++ b/dockerfiles/simple.Dockerfile @@ -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 /