From 6c2c819571bdd4f47d546e74533c1d48c063ecf6 Mon Sep 17 00:00:00 2001 From: peaceiris <30958501+peaceiris@users.noreply.github.com> Date: Wed, 3 Jul 2019 20:59:22 +0900 Subject: [PATCH] fix: BUILD_DEPS --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5a78bc2..be32f5e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ ENV HUGO_URL="https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION ENV BUILD_DEPS="wget ca-certificates" RUN apt-get update && \ - apt-get install -y --no-install-recommends git "${BUILD_DEPS}" && \ + apt-get install -y --no-install-recommends git ${BUILD_DEPS} && \ wget "${HUGO_URL}" && \ apt-get install -y --no-install-recommends "./${HUGO_NAME}.deb" && \ rm -rf "./${HUGO_NAME}.deb" "${HUGO_NAME}" && \