Browse Source

Use hugo extended

master
Chris Smith 5 years ago
parent
commit
fbdc48ab03
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      Dockerfile

+ 3
- 3
Dockerfile View File

@@ -7,10 +7,10 @@ RUN apt-get -qq update \
7 7
 	&& DEBIAN_FRONTEND=noninteractive apt-get -qq install -y --no-install-recommends python-pygments git ca-certificates asciidoctor \
8 8
 	&& rm -rf /var/lib/apt/lists/*
9 9
 
10
-ENV HUGO_VERSION 0.53
11
-ENV HUGO_BINARY hugo_${HUGO_VERSION}_Linux-64bit.deb
10
+ENV HUGO_VERSION 0.54.0
11
+ENV HUGO_BINARY hugo_extended_${HUGO_VERSION}_Linux-64bit.deb
12 12
 
13
-ADD https://github.com/spf13/hugo/releases/download/v${HUGO_VERSION}/${HUGO_BINARY} /tmp/hugo.deb
13
+ADD https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/${HUGO_BINARY} /tmp/hugo.deb
14 14
 RUN dpkg -i /tmp/hugo.deb \
15 15
 	&& rm /tmp/hugo.deb
16 16
 

Loading…
Cancel
Save