diff --git a/hugo-node/Dockerfile b/hugo-node/Dockerfile index c7ca205..106a465 100644 --- a/hugo-node/Dockerfile +++ b/hugo-node/Dockerfile @@ -11,6 +11,8 @@ RUN apt-get update && apt-get install -y \ ca-certificates \ curl \ git \ + ruby \ + bundler \ --no-install-recommends RUN curl -L -o /tmp/node.tar.xz "https://nodejs.org/dist/${NODE_VERSION}/node-${NODE_VERSION}-linux-x64.tar.xz" \ @@ -25,6 +27,4 @@ RUN curl -L -o /tmp/node.tar.xz "https://nodejs.org/dist/${NODE_VERSION}/node-${ RUN curl -L -o /tmp/hugo.deb "https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/${HUGO_FILENAME}" \ && dpkg -i /tmp/hugo.deb \ - && rm -f /tmp/hugo.deb - - + && rm -f /tmp/hugo.deb \ No newline at end of file