Explorar el Código

HUE-8888 [docs] Upgrade hugo version to fix table display issue

Romain hace 5 años
padre
commit
1c884ccd8e
Se han modificado 2 ficheros con 5 adiciones y 4 borrados
  1. 4 3
      tools/docker/documentation/Dockerfile
  2. 1 1
      tools/docker/website/Dockerfile

+ 4 - 3
tools/docker/documentation/Dockerfile

@@ -6,9 +6,10 @@ RUN apt-get update -y && apt-get install -y \
   wget \
   python-pip
 
-RUN wget https://github.com/gohugoio/hugo/releases/download/v0.58.3/hugo_0.58.3_Linux-64bit.deb
-RUN dpkg -i hugo*.deb && rm hugo*.deb
-RUN pip install Pygments
+RUN wget https://github.com/gohugoio/hugo/releases/download/v0.62.0/hugo_0.62.0_Linux-64bit.deb \
+  && dpkg -i hugo*.deb \
+  && rm hugo*.deb \
+  && pip install Pygments
 
 COPY tools/docker/nginx/nginx.conf /etc/nginx/nginx.conf
 COPY tools/docker/documentation/docs.gethue.com.conf /etc/nginx/sites-available/docs.gethue.com

+ 1 - 1
tools/docker/website/Dockerfile

@@ -6,7 +6,7 @@ RUN apt-get update -y && apt-get install -y \
   wget \
   python-pip
 
-RUN wget https://github.com/gohugoio/hugo/releases/download/v0.58.3/hugo_0.58.3_Linux-64bit.deb \
+RUN wget https://github.com/gohugoio/hugo/releases/download/v0.62.0/hugo_0.62.0_Linux-64bit.deb \
   && dpkg -i hugo*.deb \
   && rm hugo*.deb \
   && pip install Pygments