From c813462c35aa632697ed6c5e7534fc11b35d011d Mon Sep 17 00:00:00 2001 From: peaceiris <30958501+peaceiris@users.noreply.github.com> Date: Wed, 22 May 2019 06:07:46 +0900 Subject: [PATCH] install: git --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index dc5c492..0caf413 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" RUN apt-get update && apt-get upgrade -y && \ - apt-get install -y "${BUILD_DEPS}" && \ + apt-get install -y git "${BUILD_DEPS}" && \ wget "${HUGO_URL}" && \ apt-get install "./${HUGO_NAME}.deb" && \ rm -rf "./${HUGO_NAME}.deb" "${HUGO_NAME}" && \